How can I get all the visible MKAnnotationViews in
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)clickedview
Basically I want to make some calculation to get all the views touching (in cascade) the clickedview
thanks
You can use
annotationsInMapRect:to get all the annotations inside a map rect.visibleMapRectwill get you the current map rect to use.