GeoBlazor Pro
dymaptic.GeoBlazor.Pro
dymaptic.GeoBlazor.Pro.Components
GroupLayerView Class
Represents the LayerView of a GroupLayer after it has been added to a Map in either a MapView or SceneView. ArcGIS Maps SDK for JavaScript
public class GroupLayerView : dymaptic.GeoBlazor.Core.Components.LayerView
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 LayerView 🡒 GroupLayerView
Constructors
GroupLayerView() Constructor
Parameterless constructor for use as a Razor Component.
public GroupLayerView();
GroupLayerView(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public GroupLayerView(System.Nullable<bool> visible=null);
Parameters
visible
System.Nullable<System.Boolean>
When `true`, the layer is visible in the view. default true ArcGIS Maps SDK for JavaScript
Properties
GroupLayerView.LayerViews Property
A collection of layer views within the GroupLayerView. ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.LayerView>? LayerViews { get; set; }
Property Value
System.Collections.Generic.IReadOnlyList<LayerView>
Methods
GroupLayerView.GetLayerViews() Method
Asynchronously retrieve the current value of the LayerViews property.
public System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.LayerView>?> GetLayerViews();
Returns
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<LayerView>>