1

When my mapView is loaded, I set the mapRegion to the following:

MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(location.coordinate, 700, 700);
[self.mapView setRegion:region];

I want the user to be able to zoom in on the region, but not zoom out past it.

What is the best way of going about doing this?

Lasonic
  • 701
  • 1
  • 6
  • 25

1 Answers1

0

Unfortunately, MKMapViews are a bit limited but this solution might help you out.

iOS - How to limit the MapView to a specific region?

Community
  • 1
  • 1
72A12F4E
  • 1,684
  • 1
  • 12
  • 28