allowMagnifierToPanMap property

bool allowMagnifierToPanMap

True if the ArcGISMapViewController is panned automatically when the magnifier gets near the edge of the ArcGISMapViewController, otherwise false.

The default value is true.

Implementation

bool get allowMagnifierToPanMap {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_MapView_getAllowMagnifierToPanMap(
        _handle, errorHandler);
  });
}
void allowMagnifierToPanMap=(bool value)

Implementation

set allowMagnifierToPanMap(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_MapView_setAllowMagnifierToPanMap(
        _handle, value, errorHandler);
  });
}