我面临一个非常不寻常的问题。位置管理器正在中断GMSMapView功能。当我评论我的位置管理器初始化代码时,GMSCamera移动完美。但是,当我取消注释位置管理器代码时,此代码不会移动相机位置。
我已尝试过此代码
let cameraPostition = GMSCameraPosition.camera(withLatitude:
kUserLatitude, longitude: kUserLongitude, zoom: 10.0)
mapView.animate(to: cameraPostition)
这也是
mapView.camera = GMSCameraPosition.camera(withLatitude: kUserLatitude,
longitude: kUserLongitude, zoom: 10.0)
但是一切都在静脉中。即使我已经尝试了
locationManager.stopUpdatingLocation()
帮助解决此问题。 提前致谢