minScale property

double minScale

The minimum scale at which the layer's contents will be visible.

The layer is only visible when you are zoomed further in than the minScale. However, zero indicates that there is no minScale restriction.

Implementation

double get minScale {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FeatureServiceLayerIdInfo_getMinScale(
        _handle, errorHandler);
  });
}