geoview-core - v2.2.0
    Preparing search index...

    Interface TypeTimeSliderValues

    Configuration and runtime values for a single time-slider layer.

    interface TypeTimeSliderValues {
        additionalLayerpaths?: string[];
        delay: number;
        description?: string;
        discreteValues: boolean;
        displayDateFormat?: TypeDisplayDateFormat;
        displayDateFormatShort?: TypeDisplayDateFormat;
        displayDateTimezone?: string;
        field: string;
        fieldAlias: string;
        filtering: boolean;
        isMainLayerPath: boolean;
        locked?: boolean;
        minAndMax: number[];
        range: string[];
        reversed?: boolean;
        serviceDateTemporalMode?: TemporalMode;
        singleHandle: boolean;
        step?: number;
        title?: string;
        values: number[];
    }
    Index

    Properties

    additionalLayerpaths?: string[]

    Optional layer paths of additional layers associated with this time slider.

    delay: number

    Animation delay in milliseconds between steps.

    description?: string

    Optional description displayed in the time slider panel.

    discreteValues: boolean

    Whether the time dimension uses discrete values rather than a continuous range.

    displayDateFormat?: TypeDisplayDateFormat

    Optional display date format.

    displayDateFormatShort?: TypeDisplayDateFormat

    Optional short display date format.

    displayDateTimezone?: string

    Optional IANA timezone for display dates.

    field: string

    The temporal field name on the layer.

    fieldAlias: string

    The human-readable alias for the temporal field.

    filtering: boolean

    Whether temporal filtering is currently active.

    isMainLayerPath: boolean

    Whether this is the main layer path (false means it is associated with another time slider).

    locked?: boolean

    Optional flag indicating the slider handles are locked together.

    minAndMax: number[]

    The minimum and maximum timestamp values for the slider range.

    range: string[]

    The array of date-range strings available for the slider.

    reversed?: boolean

    Optional flag indicating the slider plays in reverse.

    serviceDateTemporalMode?: TemporalMode

    Optional temporal mode from the service date dimension.

    singleHandle: boolean

    Whether the slider uses a single handle instead of a range.

    step?: number

    Optional step increment for the slider.

    title?: string

    Optional title displayed in the time slider panel.

    values: number[]

    The current slider handle values (timestamps).