I have a mapView with annotationViews and the userLocation blue dot.
I am using the following code to get the blue dot:
[self.mapView setShowsUserLocation:YES];
The annotationViews are selectable and have callouts.
However if an annotationView is close to the user's location sometimes the blue dot steals the touch.
I can set an annotationView.enabled = NO; and it will show the annotationView but it will not steal a touch from a close by annotationView.
I would like to set the user location blue dot annotationView to enabled=NO, so it does not steal the touch of close by annotationViews.
I can set the title of the blue dot with:
self.mapView.userLocation.title = @"title here..."
But I cannot disable the blue dot.
Thanks!