我已经在我的 iphone 应用程序中应用了 Google 绘图功能 。 它工作正常, 但是如果搜索位置错误, 字符串错误, 它会绘制一个位置, 仅在点击搜索按钮点击后, 才会重定向到当前位置 。 如果位置错误, 如何执行此位置, 然后直接转到当前位置 。 我的代码就像下面一样 。
NSString *urlString = [[NSString stringWithFormat:@"http://maps.google.com/maps?z=14&q=%@",message] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString:urlString];
if ([[UIApplication sharedApplication] canOpenURL:url]) {
[[UIApplication sharedApplication] openURL:url];
}
please give me a solution as soon as possible Thanks in advance