mirror of
https://github.com/apache/superset.git
synced 2026-04-21 17:14:57 +00:00
Before this PR the only way to query lat/long is in the shape of 2 columns that contains lat and long. Now we're adding 2 more options: * a single column that has lat and long with a delimiter in between * support for geohashes - geohashes are cool
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
import BoundsControl from './BoundsControl';
|
|
import CheckboxControl from './CheckboxControl';
|
|
import CollectionControl from './CollectionControl';
|
|
import ColorPickerControl from './ColorPickerControl';
|
|
import ColorSchemeControl from './ColorSchemeControl';
|
|
import DatasourceControl from './DatasourceControl';
|
|
import DateFilterControl from './DateFilterControl';
|
|
import FilterControl from './FilterControl';
|
|
import FixedOrMetricControl from './FixedOrMetricControl';
|
|
import HiddenControl from './HiddenControl';
|
|
import SelectAsyncControl from './SelectAsyncControl';
|
|
import SelectControl from './SelectControl';
|
|
import SpatialControl from './SpatialControl';
|
|
import TextAreaControl from './TextAreaControl';
|
|
import TextControl from './TextControl';
|
|
import TimeSeriesColumnControl from './TimeSeriesColumnControl';
|
|
import ViewportControl from './ViewportControl';
|
|
import VizTypeControl from './VizTypeControl';
|
|
|
|
const controlMap = {
|
|
BoundsControl,
|
|
CheckboxControl,
|
|
CollectionControl,
|
|
ColorPickerControl,
|
|
ColorSchemeControl,
|
|
DatasourceControl,
|
|
DateFilterControl,
|
|
FilterControl,
|
|
FixedOrMetricControl,
|
|
HiddenControl,
|
|
SelectAsyncControl,
|
|
SelectControl,
|
|
SpatialControl,
|
|
TextAreaControl,
|
|
TextControl,
|
|
TimeSeriesColumnControl,
|
|
ViewportControl,
|
|
VizTypeControl,
|
|
};
|
|
export default controlMap;
|