LayerPolygonIndexes enum
Enum defining indexes for polygon layer properties.
The LayerPolygonIndexes enum is used to define indexes for accessing
specific properties of a polygon layer.
fillColor: Index for the fill color of polygons.label: Index for labels associated with polygons.borderStokeWidth: Index for the border/stroke width of polygons.borderColor: Index for the border/stroke color of polygons.
Example usage:
LayerPolygonIndexes index = LayerPolygonIndexes.fillColor;
if (index == LayerPolygonIndexes.fillColor) {
// Handle fill color property
}
Values
- fillColor → const LayerPolygonIndexes
-
Index for the fill color of polygons.
- label → const LayerPolygonIndexes
-
Index for labels associated with polygons.
- borderStokeWidth → const LayerPolygonIndexes
-
Index for the border/stroke width of polygons.
- borderColor → const LayerPolygonIndexes
-
Index for the border/stroke color of polygons.
Properties
- 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<
LayerPolygonIndexes> - A constant List of the values in this enum, in order of their declaration.