我从我的应用中启动iOS地图,但正在显示"未知地点"。
以下是如何将标题添加到该位置:
@IBAction func directionsToLocation(_ sender: Any) {
let destionationMapItem = MKMapItem(placemark: MKPlacemark(coordinate: self.annotation.coordinate))
destionationMapItem.name = "Destionation"
let startLocation = MKMapItem(placemark: MKPlacemark(coordinate: self.currectLocation))
startLocation.name = "My current Location"
MKMapItem.openMaps(with: [destionationMapItem,startLocation], launchOptions: [MKLaunchOptionsDirectionsModeKey:MKLaunchOptionsDirectionsModeTransit])
}
你们中的任何人都知道我做错了什么?或者为什么没有取名字的价值?
我非常感谢你的帮助。