dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
KMLLayerView Class
Represents the LayerView of a KMLLayer
after it has been added to a Map in a MapView.
ArcGIS Maps SDK for JavaScript
public class KMLLayerView : dymaptic.GeoBlazor.Core.Components.LayerView
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 LayerView 🡒 KMLLayerView
Constructors
KMLLayerView() Constructor
Parameterless constructor for use as a Razor Component.
public KMLLayerView();
KMLLayerView(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public KMLLayerView(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
KMLLayerView.AllVisibleMapImages Property
A collection of all the MapImages from visible sublayers.
ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.KMLLayerViewMapImage>? AllVisibleMapImages { get; set; }
Property Value
System.Collections.Generic.IReadOnlyList<KMLLayerViewMapImage>
KMLLayerView.AllVisiblePoints Property
A collection of graphics representing all the points from visible sublayers.
ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.Graphic>? AllVisiblePoints { get; set; }
Property Value
System.Collections.Generic.IReadOnlyList<Graphic>
KMLLayerView.AllVisiblePolygons Property
A collection of graphics representing all the polygons from visible sublayers.
ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.Graphic>? AllVisiblePolygons { get; set; }
Property Value
System.Collections.Generic.IReadOnlyList<Graphic>
KMLLayerView.AllVisiblePolylines Property
A collection of graphics representing all the polylines from visible sublayers.
ArcGIS Maps SDK for JavaScript
public System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.Graphic>? AllVisiblePolylines { get; set; }
Property Value
System.Collections.Generic.IReadOnlyList<Graphic>
KMLLayerView.Type Property
Identifies the layer view type.
public override System.Nullable<dymaptic.GeoBlazor.Core.Enums.LayerType> Type { get; }
Property Value
Methods
KMLLayerView.GetAllVisibleMapImages() Method
Asynchronously retrieve the current value of the AllVisibleMapImages property.
public System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.KMLLayerViewMapImage>?> GetAllVisibleMapImages();
Returns
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<KMLLayerViewMapImage>>
KMLLayerView.GetAllVisiblePoints() Method
Asynchronously retrieve the current value of the AllVisiblePoints property.
public System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.Graphic>?> GetAllVisiblePoints();
Returns
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Graphic>>
KMLLayerView.GetAllVisiblePolygons() Method
Asynchronously retrieve the current value of the AllVisiblePolygons property.
public System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.Graphic>?> GetAllVisiblePolygons();
Returns
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Graphic>>
KMLLayerView.GetAllVisiblePolylines() Method
Asynchronously retrieve the current value of the AllVisiblePolylines property.
public System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<dymaptic.GeoBlazor.Core.Components.Graphic>?> GetAllVisiblePolylines();
Returns
System.Threading.Tasks.Task<System.Collections.Generic.IReadOnlyList<Graphic>>