RMMapViewDelegate

@protocol RMMapViewDelegate <NSObject> @optional - (
   void
) beforeMapMove: (RMMapView*) map

Use this for notifications of map panning, zooming, and taps on the RMMapView.

Summary
RMMapViewDelegateUse this for notifications of map panning, zooming, and taps on the RMMapView.
Functions
mapViewRegionDidChangeTells the delegate that the region displayed by the map view just changed.

Functions

mapViewRegionDidChange

- (void)mapViewRegionDidChange:(RMMapView *)mapView

Tells the delegate that the region displayed by the map view just changed.  This method is called whenever the currently displayed map region changes.  During scrolling and zooming, this method may be called many times to report updates to the map position.  Therefore, your implementation of this method should be as lightweight as possible to avoid affecting scrolling and zooming performance.

Parameters

mapView{<RMMapView *>}
@protocol RMMapViewDelegate <NSObject> @optional - (
   void
) beforeMapMove: (RMMapView*) map
Use this for notifications of map panning, zooming, and taps on the RMMapView.
- (void)mapViewRegionDidChange:(RMMapView *)mapView
Tells the delegate that the region displayed by the map view just changed.
Close