LayerViewStatus

sealed class LayerViewStatus

The status of a layer in the GeoView. This status is used to determine whether a layer is displaying in a GeoView or whether it is still loading, not visible, out of scale, or has encountered an error or warning. Each layer can have multiple states at the same time. For example, a layer could be both LayerViewStatus.NotVisible and LayerViewStatus.OutOfScale, or it could be LayerViewStatus.NotVisible and LayerViewStatus.Loading. These multiple states are represented using a flag enumeration.

A status of LayerViewStatus.Active indicates that the layer is being displayed in the view. Note, that some of the layer view states are not possible together. For example, a layer cannot be both LayerViewStatus.Active and LayerViewStatus.NotVisible at the same time.

If you implement a layer list in a table of contents (TOCs), you can use the layer view status to manage the TOC user interface. For example, you could gray out the layer if it is LayerViewStatus.OutOfScale, or you could show a spinning icon if the layer is LayerViewStatus.Loading. If the layer list contains a GroupLayer that is LayerViewStatus.NotVisible then its child layers will be LayerViewStatus.NotVisible. If, the GroupLayer is visible then each child layer can be either visible or LayerViewStatus.NotVisible.

If the layer completely fails to load or render you will encounter a LayerViewStatus.Error. If the layer fails to render some of its content then you will encounter a LayerViewStatus.Warning. This could be due to the temporary loss of a network connection, failing layer requests or exceeding the max feature count. In both cases you will find more details about the problem in the LayerViewState.error.

Since

200.1.0

See also

Inheritors

Types

Link copied to clipboard

= 1, The layer in the view is active. A status of LayerViewStatus.Active indicates that the layer is being displayed in the view.

Link copied to clipboard

= 16, The layer in the view has an unrecoverable error. When the status is LayerViewStatus.Error, the layer cannot be rendered in the view. For example, it may have failed to load, be an unsupported layer type or contain invalid data.

Link copied to clipboard

= 8, The layer in the view is loading. Once loading has completed, the layer will be available for display in the view. If there was a problem loading the layer, the status will be set to LayerViewStatus.Error and the LayerViewState.error property will provide details on the specific problem.

Link copied to clipboard

= 2, The layer in the view is not visible.

Link copied to clipboard

= 4, The layer in the view is out of scale. A status of LayerViewStatus.OutOfScale indicates that the view is zoomed outside of the scale range of the layer. If the view is zoomed too far in (e.g. to a street level) it is beyond the max scale defined for the layer. If the view has zoomed to far out (e.g. to global scale) it is beyond the min scale defined for the layer.

Link copied to clipboard

= 32, The layer in the view has encountered an error which may be temporary. When the status is LayerViewStatus.Warning, the layer may still be displayed in the view. It is possible for the status to be both LayerViewStatus.Active and LayerViewStatus.Warning.