0
https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints如何根據緯度和經度在谷歌地圖上設置航點?
在這篇文章中,他們根據位置設置航點,但我想根據經度和緯度設置航點。有沒有可能,如果是的話請引導。
https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints如何根據緯度和經度在谷歌地圖上設置航點?
在這篇文章中,他們根據位置設置航點,但我想根據經度和緯度設置航點。有沒有可能,如果是的話請引導。
是的,這是可能的。您應該遵循Google Maps JavaScript API參考文檔。
https://developers.google.com/maps/documentation/javascript/reference#DirectionsWaypoint
正如你所看到的位置屬性可以是字符串或經緯度或放置對象。
所以,在你的代碼,你可以寫類似
waypts.push({
location: new google.maps.LatLng(myLat,myLng),
stopover: true
});