mapLabelsContinuousRendering property
Get the map labels continuous rendering.
Returns
True if map labels are in fading state, false otherwise
Implementation
bool get mapLabelsContinuousRendering {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getMapLabelsContinuousRendering',
);
return resultString['result'];
}
Set the map labels continuous rendering.
Parameters
- IN enable True to enable, false to disable.
Throws
- An exception if it fails.
Implementation
set mapLabelsContinuousRendering(bool enable) {
objectMethod(
_pointerId,
'MapViewPreferences',
'setMapLabelsContinuousRendering',
args: enable,
);
}