如何使用谷歌地图自动计算和显示机场的最近距离?使用jquery或javascript



我想使用谷歌地图显示机场的最近距离。

我有地址的纬度和经度。

我得到了所有最近的机场代码,但想显示最近的距离。。。

function getDistanceFromLatLonInKm(lat1,lon1,lat2,lon2) {
    var R = 6371; // Radius of the earth in km
    var dLat = deg2rad(lat2-lat1);  // deg2rad below
    var dLon = deg2rad(lon2-lon1); 
    var a = 
        Math.sin(dLat/2) * Math.sin(dLat/2) +
        Math.cos(deg2rad(lat1)) * Math.cos(deg2rad(lat2)) * 
        Math.sin(dLon/2) * Math.sin(dLon/2)
        ; 
    var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); 
    var d = R * c; // Distance in km
    return d;
}
function deg2rad(deg) {
    return deg * (Math.PI/180)
}

调用函数getDistanceFromLatLonInKm(lat1,lon1,lat2,lon2),然后检查哪个是最低的。

参考计算两个经纬度点之间的距离?(Haversine公式)

最新更新