I have an issue. My current location is displayed and centered in a map view however the map region doesn\'t get zoomed in to. I tried taking Rob\'s advice by taking span an
You could achieve the most basic in 3 lines of code
var region: MKCoordinateRegion = self.mapView.region region = MKCoordinateRegionMake(self.mapView.centerCoordinate, MKCoordinateSpanMake(0.005, 0.005)); self.mapView.setRegion(region, animated: true)