cursorRenderEnabled property

bool get cursorRenderEnabled

Check if cursor rendering is enabled.

Controls whether the cursor is actually drawn on screen. Both this property and cursorEnabled must be true for the cursor crosshair to appear. Separating these allows you to enable cursor functionality without necessarily displaying the visual indicator.

Returns

  • (bool) True if cursor rendering is enabled, false otherwise.

See also:

Implementation

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

  return resultString['result'];
}