我正在使用以下网址获取两个地点之间的行车路线。
NSString* apiUrlStr = [NSString stringWithFormat:@"http://maps.google.com/maps?output=dragdir&saddr=%@&daddr=%@", saddr, daddr];
在上述查询中需要进行哪些更改才能获得自行车,步行或公共交通的路线以及相应的距离,两地之间所需的时间?
提前感谢您的帮助。
答案 0 :(得分:6)
你必须使用“dirflg =?”参数,其中“?”可以是:
dirflg Route type. dirflg=h Switches on "Avoid Highways" route finding mode. dirflg=t Switches on "Avoid Tolls" route finding mode. dirflg=r Switches on "Public Transit" - only works in some areas. Can also set date and time info described below. dirflg=w Switches to walking directions - still in beta. dirflg=b Switches to biking directions - only works in some areas and still in beta.
还有许多其他参数可供使用,请阅读Google Maps Parameters文档,但当然并非所有这些文章都支持Maps本机API(在每个iOS版本中都会更新)。由您来测试它们,因为official Apple doc并不总是与所有功能保持同步。