minScale property

double minScale

The minimum scale at which this display filter is applied.

This display filter is only applied when zoomed further in than the minimum scale. Set this property to allow current scale of the map to determine when this display filter is applied. If ArcGISMapViewController.scale or Viewpoint.targetScale is less than or equal this value, the DisplayFilter will be applied. This value should be greater than ScaleRangeDisplayFilter.maxScale. A value of 0 indicates this display filter is applied without a lower limit. The default value is 0.

Implementation

double get minScale {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ScaleRangeDisplayFilter_getMinScale(
        _handle, errorHandler);
  });
}
void minScale=(double value)

Implementation

set minScale(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ScaleRangeDisplayFilter_setMinScale(
        _handle, value, errorHandler);
  });
}