到目前为止,我使用以下代码从我的应用程序中成功生成了地图应用程序的路线:
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]];
它会打开带有适当行车路线的地图应用程序。问题是,我想默认打开带有步行路线的地图。也许我可以在我的请求中传递另一个参数来做到这一点。
有人知道怎么做吗?
谢谢 !