Routes Preferred API は、次の 4 つの移動手段をサポートしています。
- ドライブ
- ウォーキング
- 自転車
- オートバイ
二輪車とは、原動機付自転車(オートバイなど)を指します。二輪車の移動手段は、人間が動力源となる自転車の移動手段とは異なります。
2 輪車の移動モードの指定
Routes Preferred API を呼び出すときは、RouteTravelMode
列挙値を使用して移動モードを指定します。
例
次の例は、ComputeRoutes()
メソッド リクエストの本文で移動モードを設定する方法を示しています。
{ "origin":{ "location":{ "latLng":{ "latitude":37.419734, "longitude":-122.0827784 } } }, "destination":{ "location":{ "latLng":{ "latitude":37.417670, "longitude":-122.079595 } } }, "travelMode":"TWO_WHEELER" }