UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

14 lines 512 B
import { useEffect, memo } from 'react'; import { applyReactStyle } from '../utils/apply-react-style'; import useControl from './use-control'; function AttributionControl(props) { const ctrl = useControl(({ mapLib }) => new mapLib.AttributionControl(props), { position: props.position }); useEffect(() => { applyReactStyle(ctrl._container, props.style); }, [props.style]); return null; } export default memo(AttributionControl); //# sourceMappingURL=attribution-control.js.map