kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
17 lines (13 loc) • 447 B
TypeScript
import React from 'react';
import {MapControls} from '../../reducers';
interface Toggle3dButtonIcons {
cube: ComponentType<any>;
}
export type Toggle3dButtonProps = {
dragRotate: boolean;
onTogglePerspective: () => void;
actionIcons: Toggle3dButtonIcons;
mapControls: MapControls;
};
export type Toggle3dButtonComponent = React.FunctionComponent<Toggle3dButtonProps>;
export function Toggle3dButtonFactory(): Toggle3dButtonComponent;