如何在苹果地图中的两个位置之间绘制路线。通过openURL

时间:2018-01-26 12:27:35

标签: ios swift location apple-maps

在我的应用中,我正在获取该位置的源和目标地址。现在通过使用lat-long我想在这两个位置之间绘制路线,我想在苹果地图中打开它。 现在我正在使用这个

 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 个答案:

答案 0 :(得分:0)

试试这个。

let urlString = "http://maps.apple.com/maps?saddr=\(latStart),\(lngStart)&daddr=\(latEnd),\(lngEnd)&dirflg=d"
UIApplication.shared.open(URL(string: urlString)!, options: [:], completionHandler: nil)
  1. latStart lngStart 作为当前位置
  2. 传递
  3. 传递 latEnd lngEnd 作为你的 的 destinationlocation

  4. 更多信息显示此链接。 https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html