如何计算谷歌地图中两个坐标之间的距离?

时间:2012-03-29 04:38:35

标签: android

我在Google Map中绘制了两个点。我想根据道路方式计算两点之间的距离。任何解决方案或工作代码?

3 个答案:

答案 0 :(得分:2)

只需使用Android的内置Location课程,即可获得两个位置之间的距离。

你也可以试试这个,

Location locationA = new Location("location A");  

locationA.setLatitude(locationA.getLatitudeE6() / 1E6);  
locationA.setLongitude(locationA.getLongitudeE6() / 1E6);  

Location locationB = new Location("location B");  

locationB.setLatitude(locationB.getLatitudeE6() / 1E6);  
locationB.setLongitude(locationB.getLongitudeE6() / 1E6);  

double distance = locationA.distanceTo(locationB);

答案 1 :(得分:1)

您可以使用以下方法计算两个纬度点之间的距离。

public static float distFrom (float lat1, float lng1, float lat2, float lng2 ) 
{
    double earthRadius = 3958.75;
    double dLat = Math.toRadians(lat2-lat1);
    double dLng = Math.toRadians(lng2-lng1);
    double a = Math.sin(dLat/2) * Math.sin(dLat/2) +
    Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
    Math.sin(dLng/2) * Math.sin(dLng/2);
    double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
    double dist = earthRadius * c;

    int meterConversion = 1609;

    return new Float(dist * meterConversion).floatValue();
}

答案 2 :(得分:0)

您可以通过API完成:“几何”库中的ComputeDistanceBetween函数,“sphere”命名空间。参考:https://developers.google.com/maps/documentation/javascript/geometry

以这种方式使用:

var distance = google.maps.geometry.spherical.computeDistanceBetween(latLong, latLong);