How do I reset a mapview back to the world view zoom level?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Try this:
This will set a new region for the map view using the current center coordinate, and the maximum possible span (180 degrees of latitude, 360 degrees of longitude). |
||||
|
|
|
The map rect for the world is stored as a constant named
One other way is to set the zoom level of the map. Although the MapKit framework does not support zoom levels as Google Maps API does, you can use this category extension written by Troy Brant. Set the center coordinate to 0, 0 with zoom level 0 to get the same result.
|
|||
|
|
