获取 Google 地图步行路线 JSON 而不是驾车

Get Google Maps walking directions JSON instead of driving

我正在使用此 URL 获取 JSON 方向(并使用 GMSPolyLine 在地图上显示):

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

但是 returns 我的结果是开车,我希望用户在步行和开车之间进行选择。

谁能给我 URL 步行或开车 walking/choosing 的费用?

非常感谢!

将 URL 参数 mode 设置为值 walking

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

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