I need to get location updates in my view controller using GMSMapView. For this I have added observer for myLocation:
[_googleMapView addObserver:self forKeyPath:@"myLocation" options:NSKeyValueObservingOptionNew context:NULL];
and I also have to do:
_googleMapView.myLocationEnabled = YES;
then only I get the updates, but enabling myLocation also shows blue annotation at my current location which I do not want. How can I get location updates without showing myLocation blue dot annotation using GMSMapView (not Apple's CLLocationManager) in my View controller. Pls help.