靠近lat和long的位置

时间:2017-08-30 10:35:52

标签: javascript php geolocation gps location

我想要比较我当前的纬度&经度到另一个纬度&经度,发现附近的位置给我 我该如何计算呢?

my location : 
51.510836, -0.127579

another : 

51.547385, 0.020022
51.482876, -0.036542
51.511894, -0.248477

1 个答案:

答案 0 :(得分:3)

据我了解 你的问题是通过lat long获得最近的位置

并且您想要计算哪一个离您的位置最近

如果是,那么逐个比较所有这3个lat,long与您的位置lat长。 最近的位置是距离最远的公里。 试试这个。

    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)
}

其中lat1,lon1是你的位置,lat2,lon2是你想比较的那些点,只需将它应用于循环并传递比较位置,最后一个最低的距离就是你的答案。