I have two classes that both conform to MKAnnotation, and I was wondering, is there a way to force MapKit to not cluster the annotation when a user
MKAnnotation
MapKit
The mentioned solution didn't work for me, but this solution worked:
final class CarPinMarkerView: MKMarkerAnnotationView { override var annotation: MKAnnotation? { willSet { displayPriority = MKFeatureDisplayPriority.required } } }
Hope it helps.