mirror of
https://github.com/apache/superset.git
synced 2026-04-07 18:35:15 +00:00
* DECKGL integration Adding a new set of geospatial visualizations building on top of the awesome deck.gl library. https://github.com/uber/deck.gl While the end goal it to expose all types of layers and let users bind their data to control most props exposed by the deck.gl API, this PR focusses on a first set of visualizations and props: * ScatterLayer * HexagonLayer * GridLayer * ScreenGridLayer * Addressing comments * lint * Linting * Addressing chri's comments
39 lines
1.2 KiB
JavaScript
39 lines
1.2 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 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,
|
|
TextAreaControl,
|
|
TextControl,
|
|
TimeSeriesColumnControl,
|
|
ViewportControl,
|
|
VizTypeControl,
|
|
};
|
|
export default controlMap;
|