mapLabelsFading property
Get the map labels fading state.
Returns
True if map labels are in fading state, false otherwise.
Implementation
bool get mapLabelsFading {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'getMapLabelsFading',
dependencyId: _mapPointerId,
);
return resultString['result'];
}
Set the map labels fading effect.
Parameters
enable: True to enable fading, false to disable.
Implementation
set mapLabelsFading(bool enable) {
objectMethod(
_pointerId,
'MapViewPreferences',
'setMapLabelsFading',
args: enable,
dependencyId: _mapPointerId,
);
}