s2maps-gpu - v0.18.0
    Preparing search index...

    Interface TimeSeriesStyle

    Time Series Style

    Temporal data is a series of gridded tiles that can be visualized as an animation. Describe the time series beginning and end dates, speed, and pause duration.

    • startDate: Date formatted string or unix timestamp (e.g. 1631124000000)
    • endDate: Date formatted string or unix timestamp (e.g. 1631124000000)
    • speed: Seconds in time series per second (e.g. 10800 seconds per second)
    • pauseDuration: Time to wait before animating in seconds (e.g. 3 seconds)
    • autoPlay: If true, start playing automatically
    • loop: If true, loop the animation
    interface TimeSeriesStyle {
        autoPlay?: boolean;
        endDate?: string | number;
        loop?: boolean;
        pauseDuration?: number;
        speed?: number;
        startDate?: string | number;
    }
    Index

    Properties

    autoPlay?: boolean

    If true, start playing automatically

    endDate?: string | number

    Date formatted string or unix timestamp (e.g. 1631124000000)

    loop?: boolean

    If true, loop the animation

    pauseDuration?: number

    Time to wait before animating in seconds (e.g. 3 seconds)

    speed?: number

    Seconds in time series per second (e.g. 10800 seconds per second)

    startDate?: string | number

    Date formatted string or unix timestamp (e.g. 1631124000000)