magnifierEnabled property
True if the magnifier is enabled, otherwise false.
This method can't be called until an ArcGISMap has been assigned to the ArcGISMapViewController. If called before the map view is ready or the initialization of default magnifier fails, an ArcGISExceptionType.commonIllegalState exception will occur.
Implementation
bool get magnifierEnabled {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_MapView_getMagnifierEnabled(_handle, errorHandler);
});
}
Implementation
set magnifierEnabled(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_MapView_setMagnifierEnabled(_handle, value, errorHandler);
});
_magnifierEnabledChangedStreamController.add(value);
}