I have used the following code which is being posted all over the SO and also on the net. It's working OK on 4 inch screen but for some reason, 5 inch screen is not giving the required output.
MKMapRect zoomRect = MKMapRectNull;
for (id <MKAnnotation> annotation in _mapView.annotations) {
MKMapPoint annotationPoint = MKMapPointForCoordinate(annotation.coordinate);
MKMapRect pointRect = MKMapRectMake(annotationPoint.x, annotationPoint.y, 0, 0);
if (MKMapRectIsNull(zoomRect)) {
zoomRect = pointRect;
} else {
zoomRect = MKMapRectUnion(zoomRect, pointRect);
}
}
zoomRect = MKMapRectMake(zoomRect.origin.x - 40 * (zoomRect.size.width / _mapView.frame.size.width),
zoomRect.origin.y - 60 * (zoomRect.size.height / _mapView.frame.size.height),
zoomRect.size.width + 80 * (zoomRect.size.width / _mapView.frame.size.width),
zoomRect.size.height + 80 * (zoomRect.size.height / _mapView.frame.size.height));
[_mapView setVisibleMapRect:zoomRect
animated:NO];