本篇文章主要介紹PHP如何實現騰訊與百度座標轉換,有興趣的朋友參考下,希望對大家有幫助。
程式碼入下:
public function coordinate_switch($a,$b){//百度转腾讯坐标转换 $x = (double)$b - 0.0065; $y = (double)$a - 0.006; $x_pi = 3.14159265358979324; $z = sqrt($x * $x+$y * $y) - 0.00002 * sin($y * $x_pi); $theta = atan2($y,$x) - 0.000003 * cos($x*$x_pi); $gb = number_format($z * cos($theta),15); $ga = number_format($z * sin($theta),15); return ['Latitude'=>$ga,'Longitude'=>$gb]; } public function coordinate_switchf($a,$b){//腾讯转百度坐标转换 $x = (double)$b ; $y = (double)$a; $x_pi = 3.14159265358979324; $z = sqrt($x * $x+$y * $y) + 0.00002 * sin($y * $x_pi); $theta = atan2($y,$x) + 0.000003 * cos($x*$x_pi); $gb = number_format($z * cos($theta) + 0.0065,6); $ga = number_format($z * sin($theta) + 0.006,6); return ['Latitude'=>$ga,'Longitude'=>$gb]; }
#相關推薦:
php 使用高德地圖(一) 畫多邊形及編輯取得座標 (簡單總結)
##
以上是PHP如何實現騰訊與百度座標轉換的詳細內容。更多資訊請關注PHP中文網其他相關文章!