dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Results

RasterIdentifyResult Class

The result of identify operation on ImageryTileLayer and WCSLayer.
ArcGIS Maps SDK for JavaScript

public class RasterIdentifyResult :
System.IEquatable<dymaptic.GeoBlazor.Core.Results.RasterIdentifyResult>

Inheritance System.Object 🡒 RasterIdentifyResult

Implements System.IEquatable<RasterIdentifyResult>

Constructors

RasterIdentifyResult(IReadOnlyCollection, Point, IReadOnlyCollection, IReadOnlyCollection) Constructor

The result of identify operation on ImageryTileLayer and WCSLayer.
ArcGIS Maps SDK for JavaScript

public RasterIdentifyResult(System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Model.RasterSliceValue>? DataSeries=null, dymaptic.GeoBlazor.Core.Components.Geometries.Point? Location=null, System.Collections.Generic.IReadOnlyCollection<double>? ProcessedValue=null, System.Collections.Generic.IReadOnlyCollection<double>? Value=null);

Parameters

DataSeries System.Collections.Generic.IReadOnlyCollection<RasterSliceValue>

Transposed multidimensional data for the requested location and variable returned from a transposed multidimensional ImageryTileLayer.
ArcGIS Maps SDK for JavaScript

Location Point

The identified location.
ArcGIS Maps SDK for JavaScript

ProcessedValue System.Collections.Generic.IReadOnlyCollection<System.Double>

The processed pixel values showing results of the rasterFunction applied to the layer.
ArcGIS Maps SDK for JavaScript

Value System.Collections.Generic.IReadOnlyCollection<System.Double>

Image service pixel values.
ArcGIS Maps SDK for JavaScript

Properties

RasterIdentifyResult.DataSeries Property

Transposed multidimensional data for the requested location and variable returned from a transposed multidimensional ImageryTileLayer.
ArcGIS Maps SDK for JavaScript

public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Model.RasterSliceValue>? DataSeries { get; set; }

Property Value

System.Collections.Generic.IReadOnlyCollection<RasterSliceValue>

RasterIdentifyResult.Location Property

The identified location.
ArcGIS Maps SDK for JavaScript

public dymaptic.GeoBlazor.Core.Components.Geometries.Point? Location { get; set; }

Property Value

Point

RasterIdentifyResult.ProcessedValue Property

The processed pixel values showing results of the rasterFunction applied to the layer.
ArcGIS Maps SDK for JavaScript

public System.Collections.Generic.IReadOnlyCollection<double>? ProcessedValue { get; set; }

Property Value

System.Collections.Generic.IReadOnlyCollection<System.Double>

RasterIdentifyResult.Value Property

Image service pixel values.
ArcGIS Maps SDK for JavaScript

public System.Collections.Generic.IReadOnlyCollection<double>? Value { get; set; }

Property Value

System.Collections.Generic.IReadOnlyCollection<System.Double>