在 iPhone 模拟器中打开地图 url 总是重定向

发布于 2024-10-07 10:13:06 字数 356 浏览 5 评论 0原文

我编写了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅窗月明清似水 2024-10-14 10:13:06

尝试

http://maps.google.com/maps?q=48.85812229675187,2.294490337371826

(注意 q 而不是 ll)

这可以让 Maps.app 搜索指定的位置。

Try

http://maps.google.com/maps?q=48.85812229675187,2.294490337371826

(notice the q instead of ll)

This lets Maps.app search for the specified location.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文