Is it possible that I limit MKMapView
to a certain area but I can still zoom in and out on that area?
func mapView(mapView: MKMapView, regionDidChangeAnimated animated: Bool) {
var span = MKCoordinateSpanMake(0.055, 0.055)
var region = MKCoordinateRegion(center: CLLocationCoordinate2D(latitude: 7.466988, longitude: 134.562119), span: span)
mapView.setRegion(region, animated: true)
}