7

到目前为止,我使用以下代码从我的应用程序中成功生成了地图应用程序的路线:

NSString *formattedGroceryAddress = [[NSString stringWithFormat:@"%@",((EnhancedUIActionSheet *)actionSheet).grocery.address] stringByReplacingOccurrencesOfString:@" " withString:@"+"];
NSString *routeString = [NSString stringWithFormat:@"http://maps.google.com/maps?saddr=%f,%f&daddr=%@",localDataHelper.userLocation.coordinate.latitude,localDataHelper.userLocation.coordinate.longitude,formattedGroceryAddress];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:routeString]];

它会打开带有适当行车路线的地图应用程序。问题是,我想默认打开带有步行路线的地图。也许我可以在我的请求中传递另一个参数来做到这一点。

有人知道怎么做吗?

谢谢 !

4

1 回答 1

27

好吧,我想我应该在问之前更好地搜索!

您可以将 dirflg=w 添加到请求中,它将以步行模式启动地图应用程序。

这很有趣,因为苹果说他们只支持一些谷歌地图参数,不包括这个参数,但它实际上似乎工作!

有关 Google 地图参数的更多信息:http: //mapki.com/wiki/Google_Map_Parameters
有关来自 iOS 应用程序的地图链接的更多信息:http: //developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/ MapLinks.html

于 2011-01-05T21:35:19.503 回答