I am showing the current location in MKMapView by using showUserLocation enables. I also want to center the mapview to the us
-(void) removeZoom:(float)deltaValue
{
MKCoordinateRegion region;
region.center.latitude = self.locationManager.location.coordinate.latitude;
region.center.longitude = self.locationManager.location.coordinate.longitude;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5];
region.span.latitudeDelta = deltaValue;
region.span.longitudeDelta = deltaValue;
region = [mapViewSelf regionThatFits:region];
[mapViewSelf setRegion:region animated:YES];
[UIView commitAnimations];
}