在 iPhone 模拟器中打开地图 url 总是重定向
我编写了一个 iPhone 应用程序,它使用谷歌地图来显示地图。
即
http://maps.google.com/maps?ll=48.85812229675187,2.294490337371826
with:
[[UIApplication shareApplication] openURL:[NSURL URLWithString:url]];
但我总是被重定向到当前位置。我做错了什么?我怎样才能避免这种情况?
I have written an iPhone app that uses google maps for displaying maps.
I.e.
http://maps.google.com/maps?ll=48.85812229675187,2.294490337371826
with:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
But I always gets redirected to the current location. What am I doing wrong? How can I avoid this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
(注意 q 而不是 ll)
这可以让 Maps.app 搜索指定的位置。
Try
(notice the q instead of ll)
This lets Maps.app search for the specified location.