I use below code to load the Map, but after results come, still the map is centered to user location not around the annotation, due to that I have to scroll to the pin to see.
Map(coordinateRegion: $region, showsUserLocation: true, annotationItems: searchResults) { dest in
MapAnnotation(coordinate: dest.coordinate, anchorPoint: CGPoint(x: 0.5, y: 0.5)) {
MapPin(coordinate)
}
}