项目列表和分包单位以及迁移人员

This commit is contained in:
Teo
2025-03-31 18:00:54 +08:00
parent f1ca0b6040
commit c4125585ce
30 changed files with 1780 additions and 81 deletions

17
node_modules/@amap/amap-jsapi-loader/test/demo.ts generated vendored Normal file
View File

@ -0,0 +1,17 @@
import AMapLoader from "../";
// import { } from "@ali/test-amap-jsapi";
AMapLoader.load({
key: "test",
version: "2.0"
}).then(() => {
new AMap.Circle({})
const map = new AMap.Map("div");
map.on("complete", () => {
const circle = new AMap.Circle({
center: [135, 45],
radius: 40
});
map.add(circle);
});
});