When i use setShowsUserLocation with MKMapView to track user location, how do I set the accuracy and distance filter? I am not talking about
setShowsUserLocation
MKMapView
You can't set the accuracy, however, you can get the accuracy via the userLocation in the MKMapView delegate method.
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation { NSLog(@"%f", userLocation.location.horizontalAccuracy); }