使用选项首次显示 iOS MapKit MKMapItem 生成的地图时,自动缩放的正确方法是什么MKLaunchOptionsMapSpanKey:
?
具体来说,应该如何为MKLaunchOptionsMapSpanKey:???
(即MKLaunchOptionsMapSpanKey:0.1
)输入缩放因子。
或者,是否有另一种方式以编程方式在地图首次显示时自动缩放地图,而我不知道?
@IBAction func getDirections(sender: AnyObject) {
let mapItem = MKMapItem.mapItemForCurrentLocation()
let coords = CLLocationCoordinate2DMake(latitude, longitude)
mapItem.name = "User Location"
let options = [MKLaunchOptionsMapSpanKey:???,MKLaunchOptionsMapCenterKey:location, ]
let place = MKPlacemark(coordinate: coords, addressDictionary:nil)
mapItem.openInMapsWithLaunchOptions(options)
}