マップビューで、ソースから目的地までのルートを適切に取得しました。しかし、マップビューでルート方向のリストを取得したい.同様に、必要なサンプルリンクを1つ下に追加しました。iPhoneで可能ですか?はいの場合、どうすればよいか教えてください。 http://thumblines.com/2012/02/05/driving-directions-in-native-ios-and-android-apps/ 現在、以下のコードを使用していますが、機能していません。
NSString *googleMapsURLString = [NSString stringWithFormat:@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f", start.latitude, start.longitude, end.latitude, end.longitude];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];