Google マップ 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) {
........
ありがとう、シャラス