mapLabelsFading property

bool get mapLabelsFading

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 mapLabelsFading (bool enable)

Set the map labels fading effect.

Parameters

  • IN enable True to enable, false to disable.

Implementation

set mapLabelsFading(bool enable) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'setMapLabelsFading',
    args: enable,
    dependencyId: _mapPointerId,
  );
}