gpt4 book ai didi

ios - 如何使用掉落的图钉打开谷歌地图应用程序? - swift

转载 作者:IT王子 更新时间:2023-10-29 05:45:29 25 4
gpt4 key购买 nike

我有这段代码可以打开带有特定位置的 Google map 应用程序,它可以正常工作,但我需要在该位置放置一个图钉,这可能吗?

if (UIApplication.shared.canOpenURL(URL(string:"comgooglemaps://")!)) {

UIApplication.shared.openURL(URL(string:
"comgooglemaps://?center=\(self.location.coordinate.latitude),\(self.location.coordinate.longitude)&zoom=14&views=traffic")!)
} else {
print("Can't use comgooglemaps://");
}

如何做到这一点?

最佳答案

q: The query string for your search.

它在给定的坐标中创建一个标记。试试这个

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://")
}
}

关于ios - 如何使用掉落的图钉打开谷歌地图应用程序? - swift ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43276530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com