MKCoordinateRegion region =
MKCoordinateRegionMakeWithDistance(annotation.coordinate, 10, 10);
[self.mapView setRegion:region];
This is my code but it doesn't work correctly.
I have a map with my current location and some annotations.
Now I want to show only the annotations which are in a radius of 10 meters.
Is there a minimum radius? If I take 1000m it works correctly!