UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

19 lines (18 loc) 542 B
export type TimeResolution = 'day' | 'week' | 'month' | 'year'; export type TimeMode = 'value' | 'range'; export type TimeWidget = 'datepicker' | 'slider'; /** * Specifies how options for time restricted layers are structured */ interface ITimeOptions { minValue: string; maxValue: string; minDefValue: string | null; maxDefValue: string | null; values?: string[]; interval: [number, number, number, number]; resolution: TimeResolution; mode: TimeMode; widget: TimeWidget; } export default ITimeOptions;