kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
17 lines (16 loc) • 582 B
TypeScript
import React from 'react';
import { IntlShape } from 'react-intl';
import { InputStyle, MapState } from '@kepler.gl/types';
interface AddMapStyleModalProps {
inputMapStyle: Function;
inputStyle: InputStyle;
loadCustomMapStyle: Function;
mapboxApiAccessToken: string;
mapboxApiUrl?: string;
mapState: MapState;
intl: IntlShape;
}
declare function AddMapStyleModalFactory(): React.FC<import("react-intl").WithIntlProps<AddMapStyleModalProps>> & {
WrappedComponent: React.ComponentType<AddMapStyleModalProps>;
};
export default AddMapStyleModalFactory;