kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
17 lines (13 loc) • 521 B
TypeScript
import React from 'react';
import {Editor, MapControls} from '../../reducers';
import {MapDrawPanelIcons} from './map-control';
export type MapDrawPanelProps = {
editor: Editor,
mapControls: MapControls,
onToggleMapControl: (control: string) => void;
onSetEditorMode: (mode: string) => void,
onToggleEditorVisibility: () => void,
actionIcons: MapDrawPanelIcons
};
export type MapDrawPanelComponent = React.FunctionComponent<MapDrawPanelProps>;
export function MapDrawPanelFactory(): MapDrawPanelComponent;