kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (10 loc) • 366 B
TypeScript
import React from 'react';
import {MapControls} from '../../reducers';
export type LocalePanelProps = {
availableLocales: ReadonlyArray<string>;
onSetLocale: (locale: string) => void;
locale: string;
onToggleMapControl: (control: string) => void;
mapControls: MapControls;
};
export type LocalePanelComponent = React.FunctionComponent<LocalePanelProps>;