layout: default title: LayerView parent: Core Classes —

dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components.Layers

LayerView Class

Represents the view for a single layer after it has been added to either a MapView or a SceneView.
ArcGIS Maps SDK for JavaScript

public class LayerView :
System.IDisposable

Inheritance System.Object 🡒 LayerView

Derived
FeatureLayerView

Implements System.IDisposable

Properties

LayerView.JsObjectReference Property

The JavaScript object reference used by the LayerView.

public Microsoft.JSInterop.IJSObjectReference? JsObjectReference { get; set; }

Property Value

Microsoft.JSInterop.IJSObjectReference

LayerView.Layer Property

The layer being viewed.

public dymaptic.GeoBlazor.Core.Components.Layers.Layer Layer { get; set; }

Property Value

Layer

LayerView.SpatialReferenceSupported Property

Indicates if the spatialReference of the MapView is supported by the layer view.

public bool SpatialReferenceSupported { get; set; }

Property Value

System.Boolean

LayerView.Suspended Property

Value is true if the layer is suspended (i.e., layer will not redraw or update itself when the extent changes).

public bool Suspended { get; set; }

Property Value

System.Boolean

LayerView.Updating Property

Value is true when the layer is updating; for example, if it is in the process of fetching data.

public bool Updating { get; set; }

Property Value

System.Boolean

LayerView.Visible Property

Value is true when the layer is updating; for example, if it is in the process of fetching data.

public bool Visible { get; set; }

Property Value

System.Boolean

Methods

LayerView.Dispose() Method

Disposes the LayerView.

public void Dispose();

Implements Dispose()