cursorRenderEnabled property
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:
- enableCursorRender setter - Enable or disable cursor rendering.
- cursorEnabled - Check if cursor mode is enabled.
Implementation
bool get cursorRenderEnabled {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPreferences',
'isCursorRenderEnabled',
dependencyId: _mapPointerId,
);
return resultString['result'];
}