dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Model

GeographicTransformationStep Class

Represents a step in the process of transforming coordinates from one geographic coordinate system to another. ArcGIS Maps SDK for JavaScript

public record GeographicTransformationStep : dymaptic.GeoBlazor.Core.Interfaces.IInteractiveRecord, System.IEquatable<dymaptic.GeoBlazor.Core.Model.GeographicTransformationStep>

Inheritance System.Object 🡒 GeographicTransformationStep

Implements IInteractiveRecord, System.IEquatable<GeographicTransformationStep>

Constructors

GeographicTransformationStep() Constructor

Parameterless constructor

public GeographicTransformationStep();

GeographicTransformationStep(Nullable, Nullable, string) Constructor

Represents a step in the process of transforming coordinates from one geographic coordinate system to another. ArcGIS Maps SDK for JavaScript

public GeographicTransformationStep(System.Nullable<bool> IsInverse=null, System.Nullable<double> Wkid=null, string? Wkt=null);

Parameters

IsInverse System.Nullable<System.Boolean>

Indicates if the geographic transformation is inverted. default false ArcGIS Maps SDK for JavaScript

Wkid System.Nullable<System.Double>

The well-known id (wkid) hat represents a known geographic transformation. ArcGIS Maps SDK for JavaScript

Wkt System.String

The well-known text (wkt) that represents a known geographic transformation. ArcGIS Maps SDK for JavaScript

Properties

GeographicTransformationStep.AbortManager Property

Allows for transmitting CancellationToken cancel signals to JavaScript.

public dymaptic.GeoBlazor.Core.Model.AbortManager? AbortManager { get; set; }

Implements AbortManager

Property Value

AbortManager

GeographicTransformationStep.CoreJsModule Property

Reference to the Core JavaScript module.

public Microsoft.JSInterop.IJSObjectReference? CoreJsModule { get; set; }

Implements CoreJsModule

Property Value

Microsoft.JSInterop.IJSObjectReference

GeographicTransformationStep.Id Property

A unique Id to identify this record in JavaScript.

public System.Guid Id { get; set; }

Implements Id

Property Value

System.Guid

GeographicTransformationStep.IsInverse Property

Indicates if the geographic transformation is inverted. default false ArcGIS Maps SDK for JavaScript

public System.Nullable<bool> IsInverse { get; init; }

Property Value

System.Nullable<System.Boolean>

GeographicTransformationStep.JsComponentReference Property

Represents the JavaScript component reference.

public Microsoft.JSInterop.IJSObjectReference? JsComponentReference { get; set; }

Implements JsComponentReference

Property Value

Microsoft.JSInterop.IJSObjectReference

GeographicTransformationStep.Wkid Property

The well-known id (wkid) hat represents a known geographic transformation. ArcGIS Maps SDK for JavaScript

public System.Nullable<double> Wkid { get; init; }

Property Value

System.Nullable<System.Double>

GeographicTransformationStep.Wkt Property

The well-known text (wkt) that represents a known geographic transformation. ArcGIS Maps SDK for JavaScript

public string? Wkt { get; init; }

Property Value

System.String

Methods

GeographicTransformationStep.GetInverse() Method

Returns the inverse of this geographic transformation step. ArcGIS Maps SDK for JavaScript

public System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Model.GeographicTransformationStep?> GetInverse();

Returns

System.Threading.Tasks.Task<GeographicTransformationStep>