Reputation: 4594
Pre-iOS 6.0 I was able to display the full globe on an MKMapView (using the old google maps). On iOS 6.0+ (using apple maps) I cannot zoom fully out (e.g. I cannot display USA and Russia in the same MKMapView at the same time).
Does anyone know if there is any code that allows this to happen?
Thanks, Charlie
Upvotes: 4
Views: 1954
Reputation: 8304
You could try making the MKMapView square, rather than fit the screen proportions.
Upvotes: 0
Reputation: 11696
The maximum zoom out you can get using MKCoordinateSpan is this:
MKCoordinateSpan span = {.latitudeDelta = 180, .longitudeDelta = 360};
Any more latitudeDelta or longitudeDelta and you get a crash.
If you needed to see both the US and Russia at the same time, you could use 2 map views side by side.
Upvotes: 4