今のところ、次のコードを使用して、アプリからマップアプリでルートを正常に生成しています。
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]];
それは適切な運転ルートでマップアプリを開きます。事は、デフォルトで徒歩ルートでマップを開きたいということです。たぶん、それを行うために私のリクエストで別のパラメータを渡すことができます。
誰もが方法を知っていますか?
ありがとう !