我正在使用 Google maps v2 开发 Android 应用程序。在我的情况下,我有几个点具有相同的 LA/LO,这会产生一些 UX 问题,一个是在地图上选择点……所以我需要用相同的 LA/LO 获得这些点,并为每个点添加一些米,例如50m有一个很好的距离,它可以避免这些问题。如何进行此计算以增加 LA/LO 上的仪表?
非常感谢!
我正在使用 Google maps v2 开发 Android 应用程序。在我的情况下,我有几个点具有相同的 LA/LO,这会产生一些 UX 问题,一个是在地图上选择点……所以我需要用相同的 LA/LO 获得这些点,并为每个点添加一些米,例如50m有一个很好的距离,它可以避免这些问题。如何进行此计算以增加 LA/LO 上的仪表?
非常感谢!
这是一个方法,它采用坐标、以米为单位的距离和以度为单位的方位并返回新坐标。
public static Coordinate calcEndPoint(Coordinate center , int distance, double bearing)
{
Coordinate gp=null;
double R = 6371000; // meters , earth Radius approx
double PI = 3.1415926535;
double RADIANS = PI/180;
double DEGREES = 180/PI;
double lat2;
double lon2;
double lat1 = center.getDoubleLat() * RADIANS;
double lon1 = center.getDoubleLon() * RADIANS;
double radbear = bearing * RADIANS;
// System.out.println("lat1="+lat1 + ",lon1="+lon1);
lat2 = Math.asin( Math.sin(lat1)*Math.cos(distance / R) +
Math.cos(lat1)*Math.sin(distance/R)*Math.cos(radbear) );
lon2 = lon1 + Math.atan2(Math.sin(radbear)*Math.sin(distance / R)*Math.cos(lat1),
Math.cos(distance/R)-Math.sin(lat1)*Math.sin(lat2));
// System.out.println("lat2="+lat2*DEGREES + ",lon2="+lon2*DEGREES);
gp = new Coordinate( lon2*DEGREES, lat2*DEGREES);
return(gp);
}