У меня есть пользовательская карта (холст), на которой я рисую указатель карты. Я обновляю его в моем методе onLocationChanged моего основного класса, однако я изо всех сил пытаюсь заставить растровое изображение вращаться. getBearing (), кажется, не работает (по крайней мере, не для меня), и поэтому я работаю, чтобы найти наклон между точками на карте. Любая помощь будет принята с благодарностью.
public void setBearing(Point prev, Point curr){
float slope = 1;
if (prev.x - curr.x !=0){
slope = (float) ((y1-y2)/(x1-x2));
bearing = (float) Math.atan(slope);
}
}
...
Paint p = new Paint();
Matrix matrix = new Matrix();
matrix.postRotate(bearing, coords.x, coords.y);
Bitmap rotatedImage = Bitmap.createBitmap(image, 0, 0, image.getWidth(),
image.getHeight(), matrix, true);
canvas.drawBitmap(rotatedImage, x-image.getWidth()/2, y-image.getHeight()/2, p);
Edit:
Использование координат широты и долготы для поиска направления сложнее, чем просто между двумя точками. Однако этот код (измененный из найденного кода здесь ) работает хорошо:
public void setBearing(Location one, Location two){
double lat1 = one.getLatitude();
double lon1 = one.getLongitude();
double lat2 = two.getLatitude();
double lon2 = two.getLongitude();
double deltaLon = lon2-lon1;
double y = Math.sin(deltaLon) * Math.cos(lat2);
double x = Math.cos(lat1)*Math.sin(lat2) - Math.sin(lat1)*Math.cos(lat2)*Math.cos(deltaLon);
bearing = (float) Math.toDegrees(Math.atan2(y, x));
}