您好我的应用程序我有地图导航我现在想要从我当前的位置导航到目的地它不起作用。
我的导航代码。
- (IBAction)direction:(id)sender {
NSString *urlString =@"http://maps.apple.com/maps?daddr=12.9259,77.6229";
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:urlString]];
}
当我点击它显示的按钮时,我使用了上面的代码。
directions not available A route cannot be determined form this start location.
像我这样进入地图请告诉我如何解决这个问题我在上面的代码中做错了。
感谢。