kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (11 loc) • 348 B
TypeScript
import React from 'react';
import { ZoomStopsConfig } from '@kepler.gl/types';
declare type Props = {
config: ZoomStopsConfig;
property: string;
label: string;
unit: string;
onChange: (update: Record<string, ZoomStopsConfig>) => void;
};
declare const VisConfigByZoomInput: React.FC<Props>;
export default VisConfigByZoomInput;