通过另一个位置绘制两个位置之间的路线图

时间:2013-01-06 12:08:25

标签: javascript google-maps

我不太了解谷歌地图API,我现在只是在学习。通过解释here的示例,我可以在两个位置之间绘制地图。但我很想知道是否可以包含via位置..对此有任何帮助..?

1 个答案:

答案 0 :(得分:0)

我已使用下面的waypoints

解决了这个问题
 var request = {
   origin: "Mumbai, India",
   destination: "Pune, India",
   waypoints: [{ location: "Via point address", stopover: true}],
   travelMode: google.maps.DirectionsTravelMode.DRIVING
 };

由于