[Android] Fix for arrow rotation in not-default screen orientation.

This commit is contained in:
Olga Khlopkova 2020-05-20 18:43:09 +03:00 committed by Aleksandr Zatsepin
parent bdb14c3a71
commit 117993ca33

View file

@ -35,6 +35,8 @@ public class LocationUtils
double correction = 0;
switch (displayOrientation)
{
case Surface.ROTATION_0:
return angle;
case Surface.ROTATION_90:
correction = Math.PI / 2.0;
break;
@ -46,11 +48,7 @@ public class LocationUtils
break;
}
// negative values (like -1.0) should remain negative (indicates that no direction available)
if (angle >= 0.0)
angle = correctAngle(angle, correction);
return angle;
return correctAngle(angle, correction);
}
public static double correctAngle(double angle, double correction)