PreplannedPackagingStatus enum

Enumerates the different packaging states that an online PreplannedMapArea can be in.

A PreplannedMapArea is made up of a set of data packages for each of the layers in the map. When a web map author first creates a map area these packages must be prepared by the relevant online services before the area is ready to be downloaded as an offline map.

PreplannedPackagingStatus lists the possible packaging states for an online map area. The area cannot be downloaded until the value is PreplannedPackagingStatus.complete.

Inheritance

Constructors

PreplannedPackagingStatus()
const

Values

unknown → const PreplannedPackagingStatus

Indicates that the packaging status of the PreplannedMapArea is unknown.

This status is returned when your app does not yet know the status of the online area. For example, this would be the case when the PreplannedMapArea has a load status of LoadStatus.notLoaded.

processing → const PreplannedPackagingStatus

Indicates that the PreplannedMapArea is not yet ready for download.

This is the initial status for a PreplannedMapArea that has been created on the web map, but is not yet ready for download.

failed → const PreplannedPackagingStatus

Indicates that a failure occurred when creating the packages for the PreplannedMapArea.

This status means that the PreplannedMapArea cannot be downloaded. Failures encountered while creating packages need to be addressed by the web map author.

complete → const PreplannedPackagingStatus

Indicates that packaging is complete and the PreplannedMapArea is ready to be downloaded.

This status means that all packages required to download the PreplannedMapArea have been successfully prepared.

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<PreplannedPackagingStatus>
A constant List of the values in this enum, in order of their declaration.