GeoBlazor Pro

dymaptic.GeoBlazor.Pro

dymaptic.GeoBlazor.Pro.Components

ElevationSamplerDemResolution Class

The minimum and maximum resolution of the data in the sampler.
ArcGIS Maps SDK for JavaScript

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

Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 dymaptic.GeoBlazor.Core.Components.MapComponent 🡒 ElevationSamplerDemResolution

Constructors

ElevationSamplerDemResolution() Constructor

Parameterless constructor for use as a Razor Component.

public ElevationSamplerDemResolution();

ElevationSamplerDemResolution(Nullable, Nullable) Constructor

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

public ElevationSamplerDemResolution(System.Nullable<double> max=null, System.Nullable<double> min=null);

Parameters

max System.Nullable<System.Double>

The maximum resolution.
ArcGIS Maps SDK for JavaScript

min System.Nullable<System.Double>

The minimum resolution.
ArcGIS Maps SDK for JavaScript

Properties

ElevationSamplerDemResolution.Max Property

The maximum resolution.
ArcGIS Maps SDK for JavaScript

public System.Nullable<double> Max { get; set; }

Property Value

System.Nullable<System.Double>

ElevationSamplerDemResolution.Min Property

The minimum resolution.
ArcGIS Maps SDK for JavaScript

public System.Nullable<double> Min { get; set; }

Property Value

System.Nullable<System.Double>

Methods

ElevationSamplerDemResolution.GetMax() Method

Asynchronously retrieve the current value of the Max property.

public System.Threading.Tasks.Task<System.Nullable<double>> GetMax();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Double>>

ElevationSamplerDemResolution.GetMin() Method

Asynchronously retrieve the current value of the Min property.

public System.Threading.Tasks.Task<System.Nullable<double>> GetMin();

Returns

System.Threading.Tasks.Task<System.Nullable<System.Double>>

ElevationSamplerDemResolution.SetMax(Nullable) Method

Asynchronously set the value of the Max property after render.

public System.Threading.Tasks.Task SetMax(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task

ElevationSamplerDemResolution.SetMin(Nullable) Method

Asynchronously set the value of the Min property after render.

public System.Threading.Tasks.Task SetMin(System.Nullable<double> value);

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task