map.api.d.ts 292 B

12345678910
  1. type options = {
  2. key: string; // 高德地图的API Key
  3. version?: string; // API版本,默认为最新版本
  4. plugins?: string[]; // 需要加载的插件列表
  5. AMapUI?: any;
  6. Loca?: any;
  7. };
  8. declare namespace AMapLoader {
  9. export function load<T>(settings: options): Promise<T>;
  10. }