在 Google Map V3 中需要帮助我想在路线中显示多个点。目前我已经提到了起点和终点,但是如何显示我在航点(arrWaypoints)数组中的所有点?下面是我的代码。
var origin = arrWaypoints[0];
var destination = arrWaypoints[1];
this.directions.route({
origin: origin,
destination: destination,
travelMode: google.maps.DirectionsTravelMode.DRIVING,
unitSystem: google.maps.DirectionsUnitSystem.METRIC
}, function(result, status) {
........
谢谢,沙拉特