If I have a MKMapView and a CLLocationCoordinate2D how do you test whether the map\'s visible area contains the coordinate?
my two cents for swift 5.1
extension MKMapView { func contains(coordinate: CLLocationCoordinate2D) -> Bool { return self.visibleMapRect.contains(MKMapPoint(coordinate)) } }