minScale property
The minimum scale for the map.
A value of zero indicates that there is no minimum scale and the user can zoom out indefinitely. The default value is 0.0.
Implementation
double get minScale {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Map_getMinScale(_handle, errorHandler);
});
}
Implementation
set minScale(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Map_setMinScale(_handle, value, errorHandler);
});
}