步行、自行车和公共交通路线以及每种方式所需的时间,iPhone
我正在使用以下网址来获取两个位置之间的行车路线。
NSString* apiUrlStr = [NSString stringWithFormat:@"http://maps.google.com/maps?output=dragdir&saddr=%@&daddr=%@", saddr, daddr];
需要对上述查询进行哪些更改才能获取自行车、步行或公共交通的路线以及两地之间相应的距离和所需时间?
预先感谢您的任何帮助。
I am using following url to get driving directions between two locations.
NSString* apiUrlStr = [NSString stringWithFormat:@"http://maps.google.com/maps?output=dragdir&saddr=%@&daddr=%@", saddr, daddr];
What changes need to be done in above query to get directions for bicycle, walking or public transport and corresponding distance, time required between two places?
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用“dirflg=?”参数,其中“?”可以是:
还有许多其他可用参数,请阅读 Google 地图参数 文档,但当然不是全部其中的地图原生 API 支持(在每个 iOS 版本中都会更新)。您可以按照 官方 Apple 文档< /a> 并不总是具有最新的所有功能。
You must use the "dirflg=?" parameter, where "?" can be:
There are many other params available, read the Google Maps Parameters doc, but of course not all of them are supported by the Maps native API (which is updated at every iOS release). Is up to you to test them as the official Apple doc is not always up to date with all features.