maxScale property

double maxScale

The sublayer's maximum scale.

The sublayer maximum scale. Will return NAN if an error occurs.

Implementation

double get maxScale {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISSublayer_getMaxScale(
      _handle,
      errorHandler,
    );
  });
}