Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save susanna2222/6af68059bd808429cbaf991430276996 to your computer and use it in GitHub Desktop.
Save susanna2222/6af68059bd808429cbaf991430276996 to your computer and use it in GitHub Desktop.
func mapView(_ mapView: MKMapView, didUpdate userLocation: MKUserLocation) {
let span = MKCoordinateSpan(latitudeDelta: 0.001, longitudeDelta: 0.001)
let region = MKCoordinateRegion(center: userLocation.coordinate, span: span)
mapView.region = region
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment