DrawStatus enum
The status of drawing in the GeoViewController.
Use this status to determine whether the content of a view is still drawing or drawing is completed. The drawing state of a GeoViewController can either be DrawStatus.inProgress or DrawStatus.completed.
For example, when using GeoViewController.exportImage to take a screen capture of the view's visible area, you can use the draw status to determine whether the GeoViewController content has been rendered.
If you need to ensure that an individual layer has loaded and is visible, examine the LayerViewState returned by the GeoViewController.getLayerViewState method.
Constructors
- DrawStatus()
-
const
Values
- inProgress → const DrawStatus
-
Drawing of the GeoViewController content is in progress.
- completed → const DrawStatus
-
Drawing of the GeoViewController content is complete.
Properties
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<
DrawStatus> - A constant List of the values in this enum, in order of their declaration.