我有一个问题,我想在一个变量中获取属性 mylocation 的本地化值 api google maps for ios 在 languaje swift
问问题
136 次
1 回答
0
如果您只想使用属性 mapview.camera.target 内容纬度、经度或 mapview.camera.target.latitude 或经度,或者您可以使用改变位置的协议
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
if let lastLocation = locations.last {
driverLocation = lastLocation.coordinate
updateCameraPosition(driverLocation)}}
于 2017-04-19T19:10:35.603 回答