I'm trying to make an app viewing the college I'm going to but I'm having trouble only viewing the one city. I'm trying to make sure that the user cannot scroll past the city. I'm then trying to overlay that region. I thought the setRegion method would help fix that issue but apparently not. Any suggestions on how to set the region in which the user cannot surpass?
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
// sets maps to univeristy
var location = CLLocationCoordinate2DMake(42.9633,
-85.890042)
// Span and region
var span = MKCoordinateSpanMake (0.005, 0.005)
var region = MKCoordinateRegion(center: location, span: span)
Map.setRegion(region, animated: true)