在应用程序中使用 google 地图 api 时,GPS 图标不会消失。 iOS
GPS icon not disappearing when google maps api is being used in the app. iOS
我在我的应用程序中使用 google 地图,问题是即使我使用 stopUpdatingLocation 和 stopMonitoringSignificantLocationChanges, GPS 图标不会消失。我认为这是因为应用程序中有 google 个地图。我的问题是如何在使用 google 地图时删除 GPS 图标?
将 myLocationEnabled 属性 分配给 NO 应该可以完成这项工作。这是代码:
self.googleMapView.myLocationEnabled = NO;
我在我的应用程序中使用 google 地图,问题是即使我使用 stopUpdatingLocation 和 stopMonitoringSignificantLocationChanges, GPS 图标不会消失。我认为这是因为应用程序中有 google 个地图。我的问题是如何在使用 google 地图时删除 GPS 图标?
将 myLocationEnabled 属性 分配给 NO 应该可以完成这项工作。这是代码:
self.googleMapView.myLocationEnabled = NO;