Google Maps API ルート案内API すごく個人的に待望だったのですが、Google Maps API にルート案内APIが追加されました。 例えば川口から銀座へのルートを表示したい場合には以下のように記述します。 function load() { map = new GMap2(document.getElementById("map")); directions = new GDirections(map); var points = new Array(); points.push(new GLatLng(35.79866644,139.72077689));//川口の経度緯度 points.push(new GLatLng(35.66888889,139.76777778));//銀座の経度緯度 directions.loadFromWaypoints(points)