中間地点を指定してルート検索を行う

説明

中間地点(ウェイポイント)を指定してルート検索を行うにはdirectionsServiceオブジェクトのroute()メソッドを使います。route()メソッドで指定するオプションパラメータのwaypointsに中間地点を配列要素として指定します。始点、終点含めて8カ所になるので中間地点は最大6カ所までになります。これを超えるとエラーとなりルート検索は行われません。
waypointsで指定する配列には[{ location: "松本市" }]のようにします。locationには場所だけでなく緯度経度(LatLngオブジェクト)も指定することができます。waypointsを指定するだけで後は自動的にルート検索が行われ結果が表示されます。
Google Maps APIプログラミング入門 Google Maps API プログラミング入門。Google Maps API Expertである勝又雅史氏が最新のAPI ver3やGoogle Maps for Flashなどについて解説しています。
アマゾンで購入する

サンプルコード [実行]

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Google Maps API ver 3 Sample/グーグルマップAPIサンプル/Google Maps API样品</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
</head>
<body>
<div id="gmap"></div>
<input type="button" value="route" onclick="rt()">
<script type="text/javascript">
var directionsService = new google.maps.DirectionsService();
var directionsDisplay = new google.maps.DirectionsRenderer();
var map = new google.maps.Map(
document.getElementById("gmap"),{
zoom : 8,
center : new google.maps.LatLng(35.689160610317174, 139.70083951950073),
mapTypeId : google.maps.MapTypeId.ROADMAP
}
);
directionsDisplay.setMap(map);
directionsService.route({
origin : "新宿駅",
waypoints: [ { location: "鈴鹿駅" }, { location :"名古屋駅" } ],
optimizeWaypoints: true,
destination: "塩尻駅",
travelMode: google.maps.DirectionsTravelMode.DRIVING
},function(response, status){
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}else{
alert("ルート検索に失敗しました");
}
});
</script>
</body>
</html>