ui.DateSlider

  • The DateSlider is a draggable target that ranges linearly between two dates and displays its value as a label.

  • It can be configured to display dates with various interval sizes, including day, 8-day, and year.

  • The DateSlider can be initialized with start and end dates, an initial value, and a specified interval period.

  • A callback function can be used to fire when the slider's state changes, receiving the current date range and the widget itself.

  • The appearance and functionality of the DateSlider can be further customized through disabled and style arguments.

A draggable target that ranges linearly between two dates. The date slider can be configured to display dates of various interval sizes, including day, 8-day, and year. The value of the slider is displayed as a label alongside it.

UsageReturns
ui.DateSlider(start, end, value, period, onChange, disabled, style)ui.DateSlider
ArgumentTypeDetails
startDate|Number|String, optionalThe start date, as a UTC timestamp, date string, or ee.Date. Defaults to one week ago.
endDate|Number|String, optionalThe end date, as a UTC timestamp, date string, or ee.Date. Defaults to today.
valueDate|Number|String, optionalThe initial value. The value is an array consisting of the start and end date for the selected date range, but for convenience, it can be set by specifying the start date alone. Defaults to yesterday.
periodNumber, optionalThe interval size for values on the slider in days. Defaults to one.
onChangeFunction, optionalA callback to fire when the slider's state changes. The callback is passed an ee.DateRange representing the slider's current value and the slider widget.
disabledBoolean, optionalWhether the slider is disabled. Defaults to false.
styleObject, optionalAn object of allowed CSS styles with their values to be set for this widget. Defaults to an empty object.