我从@DanS 在此链接how-to-display-a-map-still-image-file-with-a-moving-current-location获得了以下代码
onCurrentPosition(Location current){
double hypotenuse = upperLeft.distanceTo(current);
double bearing = upperLeft.bearingTo(current);
double currentDistanceX = Math.cos(bearing) * hypotenuse;
// "percentage to mark the position"
double currentPixelX = (currentDistanceX / upperLeft.distanceTo(lowerRight) * Math.cos(upperLeft.bearingTo(lowerRight))) * mapWidth;
moveIndicatorX(currentPixelX);
}
以下是值:
- 当前:41.850033,-87.65005229999997
- 左上:41.866514127810355,-87.6720142364502
- 右下:41.83397145565242,-87.62824058532715
- 地图宽度:512 x 512 像素
这是位置、斜边(距离)、方位角(方位角)的在线计算器
我得到了以下结果:
- 斜边 = 2581
- 轴承 = 135.21
- 当前距离X = -2562
- 当前像素X = 311.9
想请教各位:
- 确认我的计算结果是否正确。
- 关于如何计算 currentPixelY(另一点)?
顺便说一句,我计划使用它来计算给定现实生活 LatLng(当前)的位置,并与我的静止图像映射将静止图像的左上角和右下角结合到现实生活中的 LatLng 中。
如果您想查看实际和预期的输出并想轻松理解整个画面。请参考此链接 ->如何将当前位置标记为静止图像地图