//BD-09(百度)坐标转换成GCJ-02(火星,高德)坐标
//@param bd_lon 百度经度
//@param bd_lat 百度纬度
function bd_decrypt($bd_lon,$bd_lat){
$x_pi = 3.14159265358979324 * 3000.0 / 180.0;
$x = $bd_lon - 0.0065;
$y = $bd_lat - 0.006;
$z = sqrt($x * $x + $y * $y) - 0.00002 * sin($y * $x_pi);
$theta = atan2($y, $x) - 0.000003 * cos($x * $x_pi);
// $data['gg_lon'] = $z * cos($theta);
// $data['gg_lat'] = $z * sin($theta);
$gg_lon = $z * cos($theta);
$gg_lat = $z * sin($theta);
// 保留小数点后六位
$data['gg_lon'] = round($gg_lon, 6);
$data['gg_lat'] = round($gg_lat, 6);
return $data;
}
//GCJ-02(火星,高德)坐标转换成BD-09(百度)坐标
//@param bd_lon 百度经度
//@param bd_lat 百度纬度
function bd_encrypt($gg_lon,$gg_lat){
$x_pi = 3.14159265358979324 * 3000.0 / 180.0;
$x = $gg_lon;
$y = $gg_lat;
$z = sqrt($x * $x + $y * $y) - 0.00002 * sin($y * $x_pi);
$theta = atan2($y, $x) - 0.000003 * cos($x * $x_pi);
$bd_lon = $z * cos($theta) + 0.0065;
Flutter 高德地图坐标和百度坐标相互转换
最新推荐文章于 2024-09-12 14:59:07 发布

最低0.47元/天 解锁文章
185

被折叠的 条评论
为什么被折叠?



