如何根据经纬度在谷歌地图上设置航点?

时间:2016-09-19 10:42:10

标签: javascript google-maps google-maps-api-3

https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints

在本文中,他们根据位置设置航点,但我想根据纬度和经度设置航点。是否有可能,如果是,请指导。

1 个答案:

答案 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
});