vue-tianditu2
Version:
19 lines (18 loc) • 448 B
TypeScript
export declare const DEFAULT_CONFIG: {
v: string;
tk: string;
plugins: never[];
};
export declare const PLUGINS_URL: {
D3: string[];
CarTrack: string[];
HeatmapOverlay: string[];
BufferTool: string[];
ImageOverLayer: string[];
};
export interface LoadConfig {
v?: string;
tk?: string;
plugins?: (keyof typeof PLUGINS_URL)[];
}
export declare function useApiLoader(config?: LoadConfig): Promise<unknown>;