百度地图两个坐标之间的距离计算


/**
* 计算两组经纬度坐标 之间的距离
* params :lat1 纬度1; lng1 经度1; lat2 纬度2; lng2 经度2; len_type (1:m or 2:km);
* return m or km
*/
/**
* 根据经纬度查询距离
* @param lng1 经度
* @param lat1 纬度
* @param lng2 经度
* @param lat2 纬度
* @return
*/
//获取2点之间的距离

//计算距离,参数分别为第一点的纬度,经度;第二点的纬度,经度

define('EARTH_RADIUS', 6378.137);//地球半径
define('PI', 3.1415926);

function GetDistance($lat1, $lng1, $lat2, $lng2, $len_type = 1, $decimal = 2)
{
$radLat1 = $lat1 * PI / 180.0;
$radLat2 = $lat2 * PI / 180.0;
$a = $radLat1 - $radLat2;
$b = ($lng1 * PI / 180.0) - ($lng2 * PI / 180.0);
$s = 2 * asin(sqrt(pow(sin($a/2),2) + cos($radLat1) * cos($radLat2) * pow(sin($b/2),2)));
$s = $s * EARTH_RADIUS;
$s = round($s * 1000)/1;
 //$s = round($s * 10000) / 10000; //输出为公里
//$s = round($s * 1000) / 1; //单位修改为米,取整
     if ($len_type > 1)
  {
  $s /= 1000;
 }
     return round($s, $decimal);
 }


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM