enableCursorRender property

set enableCursorRender (bool value)

Enable or disable cursor rendering.

Controls whether the cursor crosshair is actually drawn on screen. Both this property and enableCursor must be true for the cursor to appear. Separating cursor functionality from rendering allows you to enable cursor selection without necessarily showing the visual indicator.

Parameters

  • value: (bool) True to enable cursor rendering, false to disable.

See also:

Implementation

set enableCursorRender(final bool value) {
  objectMethod(
    _pointerId,
    'MapViewPreferences',
    'enableCursorRender',
    args: value,
    dependencyId: _mapPointerId,
  );
}