我的应用程序中有一个活动,其中有我用作地图的图像。如果图像与谷歌地图“网格对齐”,那么当我使用从 googlemaps 在线获得的地图的左上角和右下角时,我可以将用户 gps 转换为屏幕上的 x 和 y。但是,如果地图不是“网格对齐”并且与我的数学返回的值成一定角度,则会将用户的位置绘制在屏幕外。显然我错过了如何处理地图角度的部分,所以如果有人能阐明如何做到这一点,那将是非常有帮助的。
我知道我必须计算出弧度的角度并进行一些转换,但我不知道从哪里开始。到目前为止,这就是我用来在画布上绘制 x 和 y 的方法。
public double[] getPositionGPS(Location upperLeft, Location lowerRight, Location current){
try{
double hypotenuse = upperLeft.distanceTo(current);
double bearing = upperLeft.bearingTo(current);
double currentDistanceY = Math.cos(bearing * Math.PI / OneEightyDeg) * hypotenuse;
// "percentage to mark the position"
double totalHypotenuse = upperLeft.distanceTo(lowerRight);
double totalDistanceY = totalHypotenuse * Math.cos(upperLeft.bearingTo(lowerRight) * Math.PI / OneEightyDeg);
double currentPixelY = currentDistanceY / totalDistanceY * ImageSizeH;
double hypotenuse2 = upperLeft.distanceTo(current);
double bearing2 = upperLeft.bearingTo(current);
double currentDistanceX = Math.sin(bearing2 * Math.PI / OneEightyDeg) * hypotenuse2;
// "percentage to mark the position"
double totalHypotenuse2 = upperLeft.distanceTo(lowerRight);
double totalDistanceX = totalHypotenuse2 * Math.sin(upperLeft.bearingTo(lowerRight) * Math.PI / OneEightyDeg);
double currentPixelX = currentDistanceX / totalDistanceX * ImageSizeW;
return new double[]{currentPixelX, currentPixelY};
}catch(Exception e){
e.printStackTrace();
return new double[]{0,0};
}