dymaptic.GeoBlazor.Core

dymaptic.GeoBlazor.Core.Interfaces

ITemporalSceneLayer Interface

Interface for types SceneLayer

public interface ITemporalSceneLayer :
dymaptic.GeoBlazor.Core.Interfaces.IMapComponent

Implements IMapComponent

Properties

ITemporalSceneLayer.TimeExtent Property

The layer’s time extent.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Core.Components.TimeExtent? TimeExtent { get; set; }

Property Value

TimeExtent

ITemporalSceneLayer.TimeInfo Property

TimeInfo provides information such as date fields that store start and end time for each feature and the fullTimeExtent for the layer.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Core.Components.TimeInfo? TimeInfo { get; set; }

Property Value

TimeInfo

ITemporalSceneLayer.TimeOffset Property

A temporary offset of the time data based on a certain TimeInterval.
ArcGIS Maps SDK for JavaScript

dymaptic.GeoBlazor.Core.Components.TimeInterval? TimeOffset { get; set; }

Property Value

TimeInterval

Methods

ITemporalSceneLayer.GetTimeExtent() Method

Asynchronously retrieve the current value of the TimeExtent property.

System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.TimeExtent?> GetTimeExtent();

Returns

System.Threading.Tasks.Task<TimeExtent>

ITemporalSceneLayer.GetTimeInfo() Method

Asynchronously retrieve the current value of the TimeInfo property.

System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.TimeInfo?> GetTimeInfo();

Returns

System.Threading.Tasks.Task<TimeInfo>

ITemporalSceneLayer.GetTimeOffset() Method

Asynchronously retrieve the current value of the TimeOffset property.

System.Threading.Tasks.Task<dymaptic.GeoBlazor.Core.Components.TimeInterval?> GetTimeOffset();

Returns

System.Threading.Tasks.Task<TimeInterval>

ITemporalSceneLayer.SetTimeExtent(TimeExtent) Method

Asynchronously set the value of the TimeExtent property after render.

System.Threading.Tasks.Task SetTimeExtent(dymaptic.GeoBlazor.Core.Components.TimeExtent? value);

Parameters

value TimeExtent

Returns

System.Threading.Tasks.Task

ITemporalSceneLayer.SetTimeInfo(TimeInfo) Method

Asynchronously set the value of the TimeInfo property after render.

System.Threading.Tasks.Task SetTimeInfo(dymaptic.GeoBlazor.Core.Components.TimeInfo? value);

Parameters

value TimeInfo

Returns

System.Threading.Tasks.Task

ITemporalSceneLayer.SetTimeOffset(TimeInterval) Method

Asynchronously set the value of the TimeOffset property after render.

System.Threading.Tasks.Task SetTimeOffset(dymaptic.GeoBlazor.Core.Components.TimeInterval? value);

Parameters

value TimeInterval

Returns

System.Threading.Tasks.Task