如何从应用程序切换到地图以获取路线?
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下代码打开地图应用程序:
您还可以向其添加参数以获取路线:
ll=:代表“纬度/经度”
saddr=:生成行车路线时使用的起始地址或“源”地址。
baddr=:生成行车路线时使用的结束地址或“目的地”地址。
t=:将显示的地图类型。
z=:将显示的地图的缩放级别。
因此 - 如果您喜欢从罗马到都灵的路线:
You can open the map app using the following code:
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: