func mapView(_ mapView: MKMapView, regionDidChangeAnimated animated: Bool) {
   if mapView.userLocation.location != nil {
      Task(priority: .high) {
         await setAnnotations()
      }
   }
}