Is there a way to prevent/limit the zooming. I want to allow the user to zoom to my set fixed limits. The option to do with:
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated
Is disgusting because first you zoom in and when you are done it automatically zooms out. The goal is to stop zooming when the user reach the zoomlimit, even if he proceed with the gesture.
To derive from MKMapView in iOS6 is not purposeful because there no scrollView methods to override :(
Any other ideas?