maxScale property

double maxScale

The maximum scale for the map.

A value of zero indicates that there is no maximum scale and the user can zoom in indefinitely. The default value is 0.0.

Implementation

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

Implementation

set maxScale(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Map_setMaxScale(
      _handle,
      value,
      errorHandler,
    );
  });
}