js计算两经纬度之间的距离

js如下:

// 方法定义 lat,lng
function GetDistance( lat1, lng1, lat2, lng2){
    var radLat1 = lat1*Math.PI / 180.0;
    var radLat2 = lat2*Math.PI / 180.0;
    var a = radLat1 - radLat2;
    var  b = lng1*Math.PI / 180.0 - lng2*Math.PI / 180.0;
    var s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a/2),2) +
    Math.cos(radLat1)*Math.cos(radLat2)*Math.pow(Math.sin(b/2),2)));
    s = s *6378.137 ;// EARTH_RADIUS;
    s = Math.round(s * 10000) / 10000;
    return s;
}


// 调用 return的距离单位为km
GetDistance(10.0,113.0,12.0,114.0)

转载地址:https://segmentfault.com/a/1190000010371592

猜你喜欢

转载自www.cnblogs.com/lgq880821/p/10884687.html