timeExtent
Time extent is a two element array that can represent time extent or time instant. The two elements represent values for start and end time. The number represents the number of milliseconds since epoch (January 1, 1970) in UTC. A null as start indicates all inclusive since the beginning of time and a null as end value indicates indefinite time with no end. Time instant can be represented by setting same value for both start and end.
Referenced by: bookmark, initialState
Time instant with same values for both start and end. Example
[
971683552964,
971683552964
]
Time extent with finite start and end. Example
[
965698219737,
971683552964
]
Time extent with infinite time on both ends(no beginning and no end). Example
[
null,
null
]
Time extent with infinite start(no beginning) but a finite end(has an end). Example
[
null,
971683552964
]
Time extent with finite start(has an end) but a infinite end(no beginning). Example
[
971683552964,
null
]