Swift如何在地图视图中呈现某人的位置?

时间:2016-04-27 08:14:36

标签: swift mkmapview cllocation

我正在使用Mapkit 我得到了某人的CLLocation并将其上传到云数据库 那么如何将他的位置呈现给地图视图呢? 非常感谢你:))

1 个答案:

答案 0 :(得分:0)

如果您已在Info.plist文件中包含NSLocationAlwaysUsageDescription密钥,则可以尝试以下操作:

let yourLocation = CLLocationCoordinate2D(latitude: location.coordinate.latitude, longitude: location.coordinate.longitude)        
let region = MKCoordinateRegion(center: yourLocation, span: MKCoordinateSpan(latitudeDelta: 0.01, longitudeDelta: 0.01))

self.map.setRegion(region, animated: true)