打开谷歌地图并添加多个图钉

时间:2018-07-04 07:31:21

标签: ios swift google-maps url-scheme

要使用固定的密码打开Goog​​le Maps应用,请使用以下代码:

if (UIApplication.shared.canOpenURL(URL(string:"comgooglemaps://")!)) {
        UIApplication.shared.open(URL(string:"comgooglemaps://?center=\(self.location.coordinate.latitude),\(self.location.coordinate.longitude)&zoom=14&views=traffic&q=\(self.location.coordinate.latitude),\(self.location.coordinate.longitude)")!, options: [:], completionHandler: nil)
    } else {
        print("Can't use comgooglemaps://")
    }
}

使用一个针脚时,此代码正确。

我的问题是,如何添加多个引脚?

先谢谢了。非常感谢您的帮助。

0 个答案:

没有答案