dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Components

Orientation Class

The z axis orientation.
ArcGIS Maps SDK for JavaScript

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

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

Constructors

Orientation() Constructor

Parameterless constructor for use as a Razor Component.

public Orientation();

Orientation(Nullable) Constructor

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

public Orientation(System.Nullable<double> z=null);

Parameters

z System.Nullable<System.Double>

z axis orientation.
ArcGIS Maps SDK for JavaScript

Properties

Orientation.Z Property

z axis orientation.
ArcGIS Maps SDK for JavaScript

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

Property Value

System.Nullable<System.Double>

Methods

Orientation.GetZ() Method

Asynchronously retrieve the current value of the Z property.

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

Returns

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

Orientation.SetZ(Nullable) Method

Asynchronously set the value of the Z property after render.

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

Parameters

value System.Nullable<System.Double>

The value to set.

Returns

System.Threading.Tasks.Task