node-tutorial icon indicating copy to clipboard operation
node-tutorial copied to clipboard

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

Open Wscats opened this issue 7 years ago • 1 comments

function (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;
    s = Math.round(s * 10000) / 10000;
    return s
};

Wscats avatar Feb 26 '18 15:02 Wscats

this is the moster intellgent teacher, but this is question Height should also be an important factor

Heathy avatar Nov 13 '19 11:11 Heathy