如何从应用程序切换到地图以获取路线?

发布于 2024-12-08 09:36:08 字数 116 浏览 0 评论 0原文

我正在 Xcode 4.2 中编写一个基于视图的应用程序。 我正在寻求一些帮助以从我的应用程序切换到 Apple 地图应用程序。

因此,应该通过按下按钮切换到地图,并启动方向部分并计算到给定位置的路线。

I'm programming a view based application in Xcode 4.2.
I am looking for some help to switch from my application, to the Apple map application.

So it should should by a push on a button switch to map, and start up the direction part and calculate the route to a given location.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

不甘平庸 2024-12-15 09:36:08

您可以使用以下代码打开地图应用程序:

UIApplication *app = [UIApplication sharedApplication];  
[app openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=Rome"]];  

您还可以向其添加参数以获取路线:
ll=:代表“纬度/经度”

saddr=:生成行车路线时使用的起始地址或“源”地址。

baddr=:生成行车路线时使用的结束地址或“目的地”地址。

t=:将显示的地图类型。

z=:将显示的地图的缩放级别。

因此 - 如果您喜欢从罗马到都灵的路线:

 UIApplication *app = [UIApplication sharedApplication];  
    [app openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=Rome&saddr=rome&daddr=Torino"]];  

You can open the map app using the following code:

UIApplication *app = [UIApplication sharedApplication];  
[app openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=Rome"]];  

you can also add parameters to it to get directions:
ll=: Stands for “latittude/longitude”

saddr=: The start, or “source,” address to use when generating driving directions.

daddr=: The end, or “destination,” address to use when generating driving directions.

t=: The type of map that will be displayed.

z=: The zoom level of the map that will be displayed.

Therefore - if you like directions from Rome to Torino:

 UIApplication *app = [UIApplication sharedApplication];  
    [app openURL:[NSURL URLWithString:@"http://maps.google.com/maps?q=Rome&saddr=rome&daddr=Torino"]];  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文