No radius radius required.
You need to use the region parameter from mapView.
Check out apple docs, it's pretty clear from them.
Go through this tutorial. This will help you a lot.
demo for icode blog
in particular, you need to install something like this.
MKCoordinateSpan span = [self coordinateSpanWithMapView:self centerCoordinate:centerCoordinate andZoomLevel:zoomLevel]; MKCoordinateRegion region = MKCoordinateRegionMake(centerCoordinate, span); [self setRegion:region animated:animated];
where span can be calculated as
- (MKCoordinateSpan)coordinateSpanWithMapView:(MKMapView *)mapView centerCoordinate:(CLLocationCoordinate2D)centerCoordinate andZoomLevel:(NSUInteger)zoomLevel {
Greetings :)
source share