dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
LayerFloorInfo Class
LayerFloorInfo contains properties that allow a layer to be floor-aware.
ArcGIS Maps SDK for JavaScript
public class LayerFloorInfo : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 LayerFloorInfo
Constructors
LayerFloorInfo() Constructor
Parameterless constructor for use as a Razor Component.
public LayerFloorInfo();
LayerFloorInfo(string) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public LayerFloorInfo(string floorField);
Parameters
floorField
System.String
The field name derived from a floor-aware layer and used to filter features by floor level.
ArcGIS Maps SDK for JavaScript
Properties
LayerFloorInfo.FloorField Property
The field name derived from a floor-aware layer and used to filter features by floor level.
public string? FloorField { get; set; }
Property Value
Methods
LayerFloorInfo.GetFloorField() Method
Asynchronously retrieve the current value of the FloorField property.
public System.Threading.Tasks.Task<string?> GetFloorField();
Returns
System.Threading.Tasks.Task<System.String>
LayerFloorInfo.SetFloorField(string) Method
Asynchronously set the value of the FloorField property after render.
public System.Threading.Tasks.Task SetFloorField(string? value);
Parameters
value
System.String
The value to set.