How to set a custom annotations for all points except for user location?
问题 After the authorization checks, to obtain the user location, I am calling this CLLocation delegate function: func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) { guard let latestLocation = locations.first else { return } if currentCoordinate == nil { zoomToLocation(with: latestLocation.coordinate) } currentCoordinate = latestLocation.coordinate } And then I zoom onto the user's location: func zoomToLocation(with coordinate: CLLocationCoordinate2D) {