您好,我需要知道,如果有分離的方式座標,我已經從一個MySQL數據庫中檢索到的谷歌地圖折線使用https://developers.google.com/maps/documentation/javascript/examples/polyline-simple
他們當前存儲這樣多座標折線使用谷歌地圖
(x, y)(x, y)(x, y)
作爲座標數每次變化,因爲它取決於用戶如何長記錄的座標數據。但是我不知道如何separe座標在進入到這樣的代碼:
var polyCoordinates = [
new google.maps.LatLng(x, y),
new google.maps.LatLng(x, y),
new google.maps.LatLng(x, y)
];
我找回這樣
while ($row = mysql_fetch_array($query)) {
echo "new google.maps.LatLng(" . $row['coordinate'] . "),";
}
這樣你想要做的就是將字符串像_(2,30),(6,1),(8,7)_一樣分成x和y對,如x = 2和y = 30,然後調用_new google.maps .LatLng(2,30)_。那是對的嗎? –
這正是我想要做的。可能嗎? –