获取Google地图行走路线JSON而非驾驶

时间:2016-03-16 12:16:24

标签: ios json google-maps google-maps-sdk-ios directions

我正在使用此网址获取JSON路线(并使用GMSPolyLine在地图上显示):

https://maps.googleapis.com/maps/api/directions/json?&origin=%@&destination=%@&sensor=false

但它返回给我的结果是驾驶,我希望用户在步行和驾驶之间做出选择。

有人可以给我走路/选择步行或开车的网址吗?

非常感谢!

1 个答案:

答案 0 :(得分:1)

将网址参数mode设置为值walking

https://maps.googleapis.com/maps/api/directions/json?&origin=%@&destination=%@&mode=walking

https://developers.google.com/maps/documentation/directions/intro#TravelModes