dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
VectorTileLayerView Class
Represents the LayerView of a VectorTileLayer after it has been added to a Map in either a MapView or SceneView. ArcGIS Maps SDK for JavaScript
public class VectorTileLayerView : dymaptic.GeoBlazor.Core.Components.LayerView
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 LayerView 🡒 VectorTileLayerView
Constructors
VectorTileLayerView() Constructor
Parameterless constructor for use as a Razor Component.
public VectorTileLayerView();
VectorTileLayerView(Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public VectorTileLayerView(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
VectorTileLayerView.HasVisibleFeatures Property
When `false`, it indicates that tiles have no visible features within the current extent. ArcGIS Maps SDK for JavaScript
public System.Nullable<bool> HasVisibleFeatures { get; }
Property Value
System.Nullable<System.Boolean>
Methods
VectorTileLayerView.GetHasVisibleFeatures() Method
Asynchronously retrieve the current value of the HasVisibleFeatures property.
public System.Threading.Tasks.Task<System.Nullable<bool>> GetHasVisibleFeatures();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Boolean>>