gpt4 book ai didi

在 map 应用程序中快速获取路线

转载 作者:搜寻专家 更新时间:2023-10-30 22:19:49 25 4
gpt4 key购买 nike

我有一个应用程序可以在多个 map View 中显示多个位置。我如何添加一个按钮,允许用户在他们的 map 应用程序中打开这些位置之一并获取前往它的路线?

最佳答案

如果您有一个 MKPlaceMark,您可以使用一个 MKMapItem 并打开 map 应用程序,并将位置设置为 launchOption:

var mapItem = MKMapItem(placemark: yourPlaceMark)

mapItem.name = "The way I want to go"

//You could also choose: MKLaunchOptionsDirectionsModeWalking
var launchOptions = [MKLaunchOptionsDirectionsModeKey : MKLaunchOptionsDirectionsModeDriving]

mapItem.openInMapsWithLaunchOptions(launchOptions)

swift 3

mapItem.openInMaps(launchOptions: launchOptions)

关于在 map 应用程序中快速获取路线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28547492/

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