如何在苹果地图中的两个位置之间绘制路线。通过 openURL
Posted
技术标签:
【中文标题】如何在苹果地图中的两个位置之间绘制路线。通过 openURL【英文标题】:how to draw route between two location in apple map. by openURL 【发布时间】:2018-01-26 12:27:34 【问题描述】:在我的应用程序中,我正在获取该位置的源地址和目标地址。现在通过使用经纬度我想在这两个位置之间绘制路线,我想在苹果地图中打开它。 现在我正在使用这个
let url = URL(string: "http://maps.apple.com/maps?daddr=\(destlat),\(destlong)&dirflg=d")!
print(url)
if #available(ios 10.0, *)
UIApplication.shared.open(url, options: [:], completionHandler: nil)
else
UIApplication.shared.openURL(url)
但这仅向我显示两个位置并显示“路线不可用”
那我该如何解决呢?
【问题讨论】:
【参考方案1】:试试这个。
let urlString = "http://maps.apple.com/maps?saddr=\(latStart),\(lngStart)&daddr=\(latEnd),\(lngEnd)&dirflg=d"
UIApplication.shared.open(URL(string: urlString)!, options: [:], completionHandler: nil)
-
传递 latStart,lngStart 作为您的当前位置
将 latEnd、lngEnd 作为您的 目的地位置。
更多信息显示此链接。 https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html
【讨论】:
以上是关于如何在苹果地图中的两个位置之间绘制路线。通过 openURL的主要内容,如果未能解决你的问题,请参考以下文章