PHP根據gps座標搜尋附近

WBOY
發布: 2016-07-25 08:43:24
原創
1130 人瀏覽過
  1. define('EARTH_RADIUS', 6370.6935);
  2. function vicinity($lng, $lat, $distance = 0.5) {
  3. //$distance = 0.5; // 单位 10KM
  4. $radius = EARTH_RADIUS;
  5. $dlng = rad2deg(2*asin(sin($distance/(2*$radius))/cos($lat)));
  6. $dlat = rad2deg($distance*10/$radius);
  7. $lng_left = round($lng - $dlng, 6);
  8. $lng_right = round($lng $dlng, 6);
  9. $lat_top = round($lat $dlat, 6);
  10. $lat_bottom = round($lat - $dlat, 6);
  11. return array('lng'=> array('left'=> $lng_left, 'right'=> $lng_right), 'lat'=> array('top'=> $lat_top, 'bottom'=> $lat_bottom));
  12. }
复制代码

PHP、GPS


來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板