作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在我的 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/
我是一名优秀的程序员,十分优秀!