@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
13 lines (12 loc) • 621 B
TypeScript
import { FactoryParameters, Props as ReactMapProps } from 'react-mapbox-gl/lib/map';
import { Events as ReactMapEventProps } from 'react-mapbox-gl/lib/map-events';
import { MapboxThemeTypes, WORLD_VIEW } from './mapThemeStyle/constant';
export declare type FacortyParams = Omit<Omit<Omit<FactoryParameters, 'accessToken'>, 'dragRotate'>, 'pitchWithRotate'>;
export declare type IMapProps = Omit<ReactMapProps, 'style'> & ReactMapEventProps & {
local?: string;
worldView?: WORLD_VIEW;
theme?: MapboxThemeTypes;
queryPath?: string;
tilePath?: string;
};
export declare const DEFAULT_QUERY_PATH: string;