views:

39

answers:

1

How does one set the zoom level on a mapview?

I have a map and when showing some locations, the name isnt displayed as the map isnt zoomed in enough.

+1  A: 

You don't explicitly set the zoom level for MKMapView, instead you set a visible region with a MKCoordinateRegion that includes a center point and the span of coordinates to display.

Cannonade