GraphicsRenderingMode enum
The different rendering modes for GraphicsOverlay.
Values
- dynamic → const GraphicsRenderingMode
-
Dynamic rendering mode - the default. Update graphics as the map pans and zooms in an immediate mode.
Dynamic rendering for GraphicsOverlay is only supported if both the following conditions are met:
- If the GraphicsOverlay.renderer supports dynamic rendering. A heat map renderer is an example of a renderer not supported by the dynamic rendering mode.
- If the GraphicsOverlay.scaleSymbols is false.
Dynamic rendering allows for graphics to remain screen-aligned.
- static → const GraphicsRenderingMode
-
Static rendering mode. Only update graphics between zoom and pan operations in a retained mode. Use this mode to handle large amount of graphics.
Static rendering does not allow for graphics to remain screen-aligned.
Properties
- coreValue → RT_GraphicsRenderingMode
-
Convert to internal value.
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
GraphicsRenderingMode> - A constant List of the values in this enum, in order of their declaration.