https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints
在本文中,他们根据位置设置航点,但我想根据纬度和经度设置航点。是否有可能,如果是,请指导。
答案 0 :(得分:0)
是的,这是可能的。您应该遵循Google Maps JavaScript API参考文档。
https://developers.google.com/maps/documentation/javascript/reference#DirectionsWaypoint
如您所见,location属性可以是string或LatLng或Place对象。
因此,在您的代码中,您可以编写类似
的内容waypts.push({
location: new google.maps.LatLng(myLat,myLng),
stopover: true
});