Heim  >  Artikel  >  Backend-Entwicklung  >  PHP根据一个给定经纬度的点,进行附近地点查询

PHP根据一个给定经纬度的点,进行附近地点查询

WBOY
WBOYOriginal
2016-07-25 08:45:481270Durchsuche
实现原理先算出该点周围的矩形的四个点,然后使用经纬度去直接匹配数据库中的记录。
  1. //获取周围坐标
  2. public function returnSquarePoint($lng, $lat,$distance = 0.5){
  3. $earthRadius = 6378138;
  4. $dlng = 2 * asin(sin($distance / (2 * $earthRadius)) / cos(deg2rad($lat)));
  5. $dlng = rad2deg($dlng);
  6. $dlat = $distance/$earthRadius;
  7. $dlat = rad2deg($dlat);
  8. return array(
  9. 'left-top'=>array('lat'=>$lat + $dlat,'lng'=>$lng-$dlng),
  10. 'right-top'=>array('lat'=>$lat + $dlat, 'lng'=>$lng + $dlng),
  11. 'left-bottom'=>array('lat'=>$lat - $dlat, 'lng'=>$lng - $dlng),
  12. 'right-bottom'=>array('lat'=>$lat - $dlat, 'lng'=>$lng + $dlng)
  13. );
  14. }
  15. //计算两个坐标的直线距离
  16. public function getDistance($lat1, $lng1, $lat2, $lng2){
  17. $earthRadius = 6378138; //近似地球半径米
  18. // 转换为弧度
  19. $lat1 = ($lat1 * pi()) / 180;
  20. $lng1 = ($lng1 * pi()) / 180;
  21. $lat2 = ($lat2 * pi()) / 180;
  22. $lng2 = ($lng2 * pi()) / 180;
  23. // 使用半正矢公式 用尺规来计算
  24. $calcLongitude = $lng2 - $lng1;
  25. $calcLatitude = $lat2 - $lat1;
  26. $stepOne = pow(sin($calcLatitude / 2), 2) + cos($lat1) * cos($lat2) * pow(sin($calcLongitude / 2), 2);
  27. $stepTwo = 2 * asin(min(1, sqrt($stepOne)));
  28. $calculatedDistance = $earthRadius * $stepTwo;
  29. return round($calculatedDistance);
  30. }
复制代码

PHP


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn