計算路由摘要
如要使用 Text Search (新版) 或 Nearby Search (新版) 來計算回應中各個地點的交通時間和距離:
-
在要求中傳遞
routingParameters.origin
參數,指定路徑起點的經緯度座標。這個參數是計算回應中各個地點的時間長度和距離所需的必要參數。 -
在欄位遮罩中加入
routingSummaries
,讓回應包含routingSummaries
陣列。這個陣列包含路線起點到回應中各個地點的時間和距離。
您可以透過 API Explorer 提出即時要求,熟悉 API 和 API 選項:
試試看!使用 Text Search (新版)
在下列要求中,您可以計算 Text Search (新版) 回應中每個地點的移動時間和距離:
curl -X POST -d '{ "textQuery" : "Spicy Vegetarian Food in Sydney, Australia", "routingParameters": { "origin": { "latitude": -33.8688, "longitude": 151.1957362 } } }' \ -H 'Content-Type: application/json' -H 'X-Goog-Api-Key: API_KEY' \ -H 'X-Goog-FieldMask: places.displayName,places.formattedAddress,places.priceLevel,routingSummaries' \ 'https://places.googleapis.com/v1/places:searchText'
回應包含兩個 JSON 陣列:places
陣列包含相符的地點,而 routingSummaries
陣列則包含前往每個地點的時間和距離:
{ "places": [ { object (Place) } ] "routingSummaries": [ { object (RoutingSummary) } }
routingSummaries
陣列中的每個元素都位於 places
陣列中的對應陣列位置。也就是說,routingSummaries[0]
中的元素對應至 places[0]
中的地點。
routingSummaries
的陣列長度與 places
的陣列長度相同。如果某個地點的 routingSummary
不可用,陣列項目會為空白。
由於這個範例會計算從路線起點到各個地點的時間和距離,因此回應中的 routingSummaries.legs
欄位會包含單一 Leg
物件,其中包含從路線起點到地點的 duration
和 distanceMeters
。
{ "places": [ { "formattedAddress": "1, Westfield Sydney Central Plaza, 450 George St, Sydney NSW 2000, Australia", "displayName": { "text": "Gözleme King Sydney", "languageCode": "en" } }, { "formattedAddress": "367 Pitt St, Sydney NSW 2000, Australia", "priceLevel": "PRICE_LEVEL_MODERATE", "displayName": { "text": "Mother Chu's Vegetarian Kitchen", "languageCode": "en" } }, … ] "routingSummaries": [ { "legs": [ { "duration": "597s", "distanceMeters": 2607 } ], "directionsUri": "https://www.google.com/maps/dir/-33.8688,151.1957362/''/data=!4m6!4m5!1m0!1m2!1m1!1s0x6b12ae3fa97cd745:0x6aecf365bf497c08!3e0" }, { "legs": [ { "duration": "562s", "distanceMeters": 2345 } ], "directionsUri": "https://www.google.com/maps/dir/-33.8688,151.1957362/''/data=!4m6!4m5!1m0!1m2!1m1!1s0x6b12ae3da97f60c1:0x845f3273bd764f6c!3e0" }, … ] }
從這個範例中,您可以看到從路線起點到結果中第一個地點的時間和距離分別為 597 秒和 2607 公尺。
使用 Nearby Search
在這個範例中,您將計算附近搜尋回應中各個地點的旅行時間和距離。這個範例會搜尋澳洲雪梨的餐廳,並將位置限制和路線起點設為相同的經緯度座標:
curl -X POST -d '{ "includedTypes": ["restaurant"], "maxResultCount": 10, "locationRestriction": { "circle": { "center": { "latitude": -33.8688, "longitude": 151.1957362}, "radius": 500.0 } }, "routingParameters": { "origin": { "latitude": -33.8688, "longitude": 151.1957362 } } }' \ -H 'Content-Type: application/json' -H "X-Goog-Api-Key:API_KEY" \ -H "X-Goog-FieldMask: places.displayName,routingSummaries" \ https://places.googleapis.com/v1/places:searchNearby
您不必為 locationRestriction
和路徑起點使用相同的座標。舉例來說,您可以將 locationRestriction
設為雪梨的中心點,讓搜尋結果偏向該圓圈。但您將路線起點設為住家的座標,也就是搜尋圓圈內的其他位置。接著,要求會將搜尋結果偏向圓圈,並根據住家位置計算路線摘要。
指定交通選項
根據預設,系統會以汽車計算時間和距離。不過,您可以在搜尋中控制車輛類型和其他選項。
-
使用
routingParameters.travelMode
參數將運輸模式設為DRIVE
、BICYCLE
、WALK
或TWO_WHEELER
。如要進一步瞭解這些選項,請參閱「路線可用的車輛類型」。 -
使用
routingParameters.routingPreference
屬性,將路徑偏好設定選項設為TRAFFIC_UNAWARE
(預設值)、TRAFFIC_AWARE
或TRAFFIC_AWARE_OPTIMAL
。每個選項的資料品質和延遲時間都不同。詳情請參閱「指定是否要納入流量資料的方式」。routingParameters.routingPreference
屬性會影響「預覽 (Pre-GA)」directionsUri
欄位中的路線,因為 Google 地圖會在開啟連結時顯示交通選項。 -
使用
routingParameters.routeModifiers
屬性指定avoidTolls
、avoidHighways
、avoidFerries
和avoidIndoor
。如要進一步瞭解這些選項,請參閱「指定要避免的路線地圖項目」。
在下一個範例中,您將旅遊模式指定為 DRIVE
,並避免高速公路:
curl -X POST -d '{ "textQuery" : "Spicy Vegetarian Food in Sydney, Australia", "routingParameters": { "origin": { "latitude": -33.8688, "longitude": 151.1957362 }, "travelMode":"DRIVE", "routeModifiers": { "avoidHighways": true } } }' \ -H 'Content-Type: application/json' -H 'X-Goog-Api-Key: API_KEY' \ -H 'X-Goog-FieldMask: places.displayName,places.formattedAddress,places.priceLevel,routingSummaries' \ 'https://places.googleapis.com/v1/places:searchText'