kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (12 loc) • 353 B
TypeScript
import React from 'react';
import { MapState } from '@kepler.gl/types';
interface MapsLayoutProps {
mapState: MapState;
className?: string;
children?: React.ReactNode;
}
declare function MapsLayoutFactory(): React.ComponentType<MapsLayoutProps>;
declare namespace MapsLayoutFactory {
var deps: any[];
}
export default MapsLayoutFactory;