I am attempting to enable autorotation in my App, which includes an MKMapView. I enable autorotation in my view controller by always returning yes in shouldAutorotateToInterfaceOrientation. This works fine if my map hasn't been zoomed. However, if I set the region prior to rotating, I end up with a white bar at the side of the map when in landscape mode.
To demonstrate, I added the following code to viewDidLoad and then rotated to landscape mode after the app launches. Any help would be appreciated.
double currentlat = 40.0;
double currentlon = -105.0;
MKCoordinateRegion region;
region.center.latitude = currentlat;
NSLog(@"LL, %f, %f", currentlat, currentlon);
region.center.longitude = currentlon;
region.span.latitudeDelta = .0010;
region.span.longitudeDelta = .0010;
NSLog(@"Set Region Call");
MKCoordinateRegion fittedregion = [MainMapView regionThatFits:region];
[MainMapView setRegion:fittedregion animated:TRUE];