如何取得自己目前位置的經緯度?在知道了兩個地點的經緯度之後,又該如何計算兩個地點之間的距離?
最近在做一個公眾號,需要取得使用者的經緯度,然後計算使用者的經緯度與另一個地點的距離?請問該如何實現這個?請大神幫忙一下,謝謝!
如何取得自己目前位置的經緯度?在知道了兩個地點的經緯度之後,又該如何計算兩個地點之間的距離?
最近在做一個公眾號,需要取得使用者的經緯度,然後計算使用者的經緯度與另一個地點的距離?請問該如何實現這個?請大神幫忙一下,謝謝!
PHP實現"附近的人"功能,根據IP確定經緯度,根據經緯度計算距離
PHP安裝GeoIP擴充和資料庫根據IP取得訪客所在國家/城市/經緯度等資訊
接著就可以用geoip_record_by_name($_SERVER['REMOTE_ADDR'])
根據使用者確定經緯度了.
注意的西經和南緯是負數.
5000公尺轉成經緯度:
緯度Latitude: 1 deg = 110852 m
經度Longitude: 1 deg = 111320*cos(lat) m
同一經線上,相差一緯度約110852 公尺相差一緯度約為111320*cos(lat) 公尺(lat為該緯線的緯度)
<code><?php //以当前用户经纬度为中心,查询5000米内的其他用户 $y = 5000 / 110852; //纬度的范围 $x = 5000 / (111320*cos($lat)); //经度的范围 $sql = ' select * from user where lat >= ($lat-$y) and lat <= ($lat+$y) and lon >= ($lon-$x) and lon <= ($lon+$x); ';</code>
($lat-$y) <= lat <= ($lat+$y)
($lon-$x) <= lon <= ($lon+$x)
這個範圍是一個粗略的範圍,下面計算距離後把超過5公里的用戶去掉即可.
用半正矢公式(Haversine)根據經緯度計算兩點間距離:
<code><?php function distance($lat1, $lon1, $lat2, $lon2) { $R = 6371393; //地球平均半径,单位米 $dlat = deg2rad($lat2-$lat1); $dlon = deg2rad($lon2-$lon1); $a = pow(sin($dlat/2), 2) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * pow(sin($dlon/2), 2); $c = 2 * atan2(sqrt($a), sqrt(1-$a)); $d = $R * $c; return round($d); } echo distance(0, 0, -1, 0); // 111202米</code>
<code><?php $arr = array( 'win' => array( 'dis' => 1024, 'age' => 31 ), 'osx' => array( 'dis' => 512, 'age' => 15 ), 'lin' => array( 'dis' => 512, 'age' => 25 ) ); foreach($arr as $k => $v) { $sort['dis'][$k] = $v['dis']; $sort['age'][$k] = $v['age']; } //先按距离升序排序,如果距离相同,则按年龄降序排序 array_multisort($sort['dis'], SORT_ASC, $sort['age'], SORT_DESC, $arr); echo json_encode($arr); //{"lin":{"dis":512,"age":25},"osx":{"dis":512,"age":15},"win":{"dis":1024,"age":31}}</code>
百度提供介面了
GeoIP https://sjolzy.cn/GeoIP-PHP-v...
給樓主分享一個 我收藏的函數吧
直接呼叫即可 https://gist.github.com/wujun...