UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

16 lines (13 loc) 491 B
import React from 'react'; import {Layer} from 'layers'; import {MapControls} from 'reducers/ui-state-updaters'; export type LayerSelectorPanelProps = { onMapToggleLayer: (layerId: string) => void; onToggleMapControl: (control: string) => void; layers: ReadonlyArray<Layer>; layersToRender: {[key: string]: boolean}; isSplit: boolean; mapControls: MapControls; readOnly: boolean; }; export type LayerSelectorPanelComponent = React.FunctionComponent<LayerSelectorPanelProps>;