index.d.ts 571 B

123456789101112131415
  1. declare var load: (options: {
  2. key: string; // 申请好的Web端开发者Key,首次调用 load 时必填
  3. version: string; // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15
  4. plugins?: string[]; //插件列表
  5. // 是否加载 AMapUI,缺省不加载
  6. AMapUI?: {
  7. version?: string; // AMapUI 缺省 1.1
  8. plugins?: string[]; // 需要加载的 AMapUI ui插件
  9. };
  10. // 是否加载 Loca, 缺省不加载
  11. Loca?: {
  12. version?: string; // Loca 版本,缺省 1.3.2
  13. };
  14. }) => Promise<any>;
  15. export { load };