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.

Inheritance

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

coreValue int
no setter
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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<DrawStatus>
A constant List of the values in this enum, in order of their declaration.