react-amap-v2
Version:
高德地图 v2.0 react 组件
13 lines (12 loc) • 356 B
TypeScript
import React from 'react';
import { MapProps } from '@/map/map';
export interface MapContext {
url?: string;
UIUrl?: string;
version?: string;
key?: string;
plugin?: string[];
options?: MapProps;
}
export declare const Context: React.Context<MapContext>;
export declare const ConfigProvider: React.Provider<MapContext>;