位置管理器中断 GMSMapView
Location Manager interrupting GMSMapView
我遇到了一个非常不寻常的问题。位置管理器正在中断 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()
帮助解决这个问题。
提前致谢
这结束了我的问题,通过编辑我的方案并取消选中 "Allow location Simulation"
希望它可以帮助任何四处游荡的人:)
我遇到了一个非常不寻常的问题。位置管理器正在中断 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()
帮助解决这个问题。 提前致谢
这结束了我的问题,通过编辑我的方案并取消选中 "Allow location Simulation" 希望它可以帮助任何四处游荡的人:)