UNPKG

kepler.gl

Version:

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

48 lines (47 loc) 1.44 kB
import { ComponentType } from 'react'; import { MapStyle } from '@kepler.gl/reducers'; import { Layer, LayerClassesType } from '@kepler.gl/layers'; import { Filter, InteractionConfig, UiState } from '@kepler.gl/types'; import { MapStyleActions, VisStateActions, MapStateActions, UIStateActions } from '@kepler.gl/actions'; import { Datasets } from '@kepler.gl/table'; export declare type SidePanelItem = { id: string; label: string; iconComponent: ComponentType<any>; component: ComponentType<any>; }; export declare type SidePanelProps = { appName: string; appWebsite: string; filters: Filter[]; interactionConfig: InteractionConfig; layerBlending: string; overlayBlending?: string; layers: Layer[]; layerClasses: LayerClassesType; layerOrder: string[]; mapStyle: MapStyle; mapInfo: { title?: string; description?: string; }; width: number; datasets: Datasets; uiStateActions: typeof UIStateActions; visStateActions: typeof VisStateActions; mapStateActions: typeof MapStateActions; mapStyleActions: typeof MapStyleActions; uiState: UiState; availableProviders: { hasShare?: boolean; hasStorage?: boolean; }; mapSaved?: string | null; panels?: SidePanelItem[]; onSaveMap?: () => void; version: string; }; export declare type DatasetAttribution = { title: string; url: string; };