dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

GeoJSONLayerElevationInfoFeatureExpressionInfo Class

Defines how to override a feature’s Z-value based on its attributes.
ArcGIS Maps SDK for JavaScript

public class GeoJSONLayerElevationInfoFeatureExpressionInfo : dymaptic.GeoBlazor.Core.Components.MapComponent

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 GeoJSONLayerElevationInfoFeatureExpressionInfo

Constructors

GeoJSONLayerElevationInfoFeatureExpressionInfo() Constructor

Parameterless constructor for use as a Razor Component.

public GeoJSONLayerElevationInfoFeatureExpressionInfo();

GeoJSONLayerElevationInfoFeatureExpressionInfo(string, string) Constructor

Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.

public GeoJSONLayerElevationInfoFeatureExpressionInfo(string? expression=null, string? title=null);

Parameters

expression System.String

An Arcade expression following the specification defined by the Arcade Feature Z Profile.
ArcGIS Maps SDK for JavaScript

title System.String

Title of the expression.
ArcGIS Maps SDK for JavaScript

Properties

GeoJSONLayerElevationInfoFeatureExpressionInfo.Expression Property

An Arcade expression following the specification defined by the Arcade Feature Z Profile.
ArcGIS Maps SDK for JavaScript

public string? Expression { get; set; }

Property Value

System.String

GeoJSONLayerElevationInfoFeatureExpressionInfo.Title Property

Title of the expression.
ArcGIS Maps SDK for JavaScript

public string? Title { get; set; }

Property Value

System.String

Methods

GeoJSONLayerElevationInfoFeatureExpressionInfo.GetExpression() Method

Asynchronously retrieve the current value of the Expression property.

public System.Threading.Tasks.Task<string?> GetExpression();

Returns

System.Threading.Tasks.Task<System.String>

GeoJSONLayerElevationInfoFeatureExpressionInfo.GetTitle() Method

Asynchronously retrieve the current value of the Title property.

public System.Threading.Tasks.Task<string?> GetTitle();

Returns

System.Threading.Tasks.Task<System.String>

GeoJSONLayerElevationInfoFeatureExpressionInfo.SetExpression(string) Method

Asynchronously set the value of the Expression property after render.

public System.Threading.Tasks.Task SetExpression(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task

GeoJSONLayerElevationInfoFeatureExpressionInfo.SetTitle(string) Method

Asynchronously set the value of the Title property after render.

public System.Threading.Tasks.Task SetTitle(string? value);

Parameters

value System.String

The value to set.

Returns

System.Threading.Tasks.Task