我正在使用谷歌地图v2开发Android应用程序。在我的情况下,我有几个具有相同LA / LO的点,这会产生一些UX问题,一个是选择地图上的点...所以我需要用相同的LA / LO得到这些点,并为每个点添加一些米,例如50米有一个很好的距离,它可以避免这些问题。我怎样才能在LA / LO上增加米的计算值?
非常感谢!
答案 0 :(得分:3)
这是一种采用坐标,以米为单位的距离和以度为单位的方位并返回的方法 新的坐标。
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);
}