@xingm/vmap-cesium-toolbar 0.0.2-alpha.1 → 0.0.2-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,6 +27,7 @@ export declare class MapLayersService {
27
27
  * 更新配置
28
28
  */
29
29
  updateConfig(config: Partial<MapLayersServiceConfig>): void;
30
+ adjustMenuPosition: (menu: HTMLElement) => void;
30
31
  /**
31
32
  * 切换图层菜单
32
33
  */
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xingm/vmap-cesium-toolbar",
3
- "version": "0.0.1-alpha.11",
3
+ "version": "0.0.2-alpha.10",
4
4
  "description": "A powerful Cesium map toolbar plugin with drawing, measurement, and interaction features",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -0,0 +1,24 @@
1
+ export declare const defaultHeatmapData: ({
2
+ lon: string;
3
+ lat: string;
4
+ height: string;
5
+ appearTime: number;
6
+ lng?: undefined;
7
+ } | {
8
+ lng: string;
9
+ lat: string;
10
+ height: string;
11
+ appearTime: number;
12
+ lon?: undefined;
13
+ })[][];
14
+ export declare const defaultHeatmapColors: {
15
+ 0: string;
16
+ 40: string;
17
+ 60: string;
18
+ 90: string;
19
+ 110: string;
20
+ };
21
+ export declare const defaultHeatmapOpacity: {
22
+ 0: number;
23
+ 0.5: number;
24
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xingm/vmap-cesium-toolbar",
3
- "version": "0.0.2-alpha.1",
3
+ "version": "0.0.2-alpha.10",
4
4
  "description": "A powerful Cesium map toolbar plugin with drawing, measurement, and interaction features",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,8 +22,8 @@
22
22
  },
23
23
  "scripts": {
24
24
  "dev": "vite --force",
25
- "build": "vite build && vite build --mode lib",
26
- "build:lib": "vite build --mode lib",
25
+ "build": "vite build --mode lib",
26
+ "build:dts": "vue-tsc -p tsconfig.dts.json",
27
27
  "build:plugin": "node scripts/build-plugin.js",
28
28
  "generate:file-list": "node scripts/generate-file-list.js",
29
29
  "preview": "vite preview",