gpt4 book ai didi

ios - 如何启动 map 应用程序并开始导航

转载 作者:可可西里 更新时间:2023-10-31 23:59:03 26 4
gpt4 key购买 nike

在我的 iOS 应用程序中,我有用户想要到达的地方的纬度和经度 (CLLocationCoordinate2D)。我想要的是,当按下相关按钮时, map 应用程序将启动,并且到那个地方的街道导航也将启动。我怎样才能做到这一点?到目前为止,我的代码是:

@IBAction func launchMapsApp(sender:UIButton) {
if (sender == self.navButton) {

let mapItem = MKMapItem(placemark: MKPlacemark(coordinate: self.currentCoordinates, addressDictionary: nil))

mapItem.name = ""

//You could also choose: MKLaunchOptionsDirectionsModeWalking
let launchOptions = [MKLaunchOptionsDirectionsModeKey : MKLaunchOptionsDirectionsModeDriving, MKLaunchOptionsShowsTrafficKey: true]

mapItem.openInMapsWithLaunchOptions(launchOptions as? [String : AnyObject])
}

}

但是有了这个, map 应用程序就简单地启动了,我只看到了我所在州(意大利)的 map ,没有其他事情发生。也许,因为我只在模拟器中运行过?感谢大家

最佳答案

你走对了:这是我的 swift 2.0 代码:

let latitude:CLLocationDegrees = xx.xxxxx
let longitude: CLLocationDegrees = xx.xxxxx
let regiondistance:CLLocationDistance = 10000
let coordinates = CLLocationCoordinate2DMake(latitude, longitude)
let regionspan = MKCoordinateRegionMakeWithDistance(coordinates, regiondistance, regiondistance)
let options = MKLaunchOptionsMapCenterKey:NSValue(MKCoordinate:regionspan.center),MKLaunchOptionsMapSpanKey:NSValue(MKCoordinateSpan:regionspan.span)]

let placemark = MKPlacemark(coordinate: coordinates, addressDictionary: nil)
let mapitem = MKMapItem(placemark: placemark)
mapitem.name = "Name you want"
mapitem.openInMapsWithLaunchOptions(options)

我希望我的代码能让您有所了解。

关于ios - 如何启动 map 应用程序并开始导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36217710/

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