mapLabelsContinuousRendering property

bool get mapLabelsContinuousRendering

Get the map labels continuous rendering flag.

Returns

True if map labels continuous rendering is enabled, false otherwise.

Implementation

bool get mapLabelsContinuousRendering {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'MapViewPreferences',
    'getMapLabelsContinuousRendering',
    dependencyId: _mapPointerId,
  );

  return resultString['result'];
}
set mapLabelsContinuousRendering (bool enable)

Set map labels continuous rendering.

Parameters

  • enable: True to enable continuous rendering, false to disable.

Implementation

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