Files
xinnengyuan/node_modules/@amap/amap-jsapi-loader/index.d.ts

16 lines
571 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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