in ipohne app Using mapView how to detect the the range of area visible in mapview (i mean range of longitude and latitude which binds the total area)
and also when applying zoomin or zoomout in mapview, how to get notified that the range is changed with gesture controlled (Pinch gesture)?
Your MapView instance has a
.regionproperty that you can use to find the currently displayed visible area (ie.self.mapView.region).The
MKMapViewDelegateclass has events you can implement for the range change, but it’s not tied to the pinch specifically – it’s also fired if you double tap on the map (to zoom in).