位置管理器中断GMSMapView

时间:2017-03-14 10:33:32

标签: ios swift cllocationmanager 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()

帮助解决此问题。 提前致谢

1 个答案:

答案 0 :(得分:0)

这最终解决了我的问题,通过编辑我的方案并取消选中“允许位置模拟” 希望它可以帮助任何人四处游荡:)

enter image description here