@zhangdali1996/lr-map-viewer 0.0.9 → 0.0.11

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.
@@ -0,0 +1,154 @@
1
+ var e = { items: [
2
+ {
3
+ id: "safe-001",
4
+ type: "安全监测",
5
+ name: "瓦斯监测点 A01",
6
+ position: {
7
+ x: 37401651.984317,
8
+ y: 4277124.519317,
9
+ z: 965.64
10
+ },
11
+ data: {
12
+ 甲烷浓度: "0.38%",
13
+ 设备状态: "正常",
14
+ 更新时间: "2026-04-16 09:20:00"
15
+ }
16
+ },
17
+ {
18
+ id: "safe-002",
19
+ type: "安全监测",
20
+ name: "一氧化碳监测点 A02",
21
+ position: {
22
+ x: 37401161.659,
23
+ y: 4276618.992,
24
+ z: 958.307
25
+ },
26
+ data: {
27
+ 一氧化碳浓度: "11ppm",
28
+ 设备状态: "正常",
29
+ 更新时间: "2026-04-16 09:22:00"
30
+ }
31
+ },
32
+ {
33
+ id: "safe-003",
34
+ type: "安全监测",
35
+ name: "风速监测点 A03",
36
+ position: {
37
+ x: 37400991.139,
38
+ y: 4275931.74,
39
+ z: 954.99
40
+ },
41
+ data: {
42
+ 风速: "2.8m/s",
43
+ 设备状态: "正常",
44
+ 更新时间: "2026-04-16 09:18:00"
45
+ }
46
+ },
47
+ {
48
+ id: "person-001",
49
+ type: "人员定位",
50
+ name: "巡检人员 P01",
51
+ position: {
52
+ x: 37400425.73866891,
53
+ y: 4278789.448063761,
54
+ z: 1311.15
55
+ },
56
+ data: {
57
+ 姓名: "张伟",
58
+ 部门: "安全巡检",
59
+ 状态: "在线"
60
+ }
61
+ },
62
+ {
63
+ id: "water-001",
64
+ type: "水文检测",
65
+ name: "涌水监测点 W01",
66
+ position: {
67
+ x: 37401945.902987,
68
+ y: 4277486.01157,
69
+ z: 967.409
70
+ },
71
+ data: {
72
+ 水压: "0.31MPa",
73
+ 水位: "1.26m",
74
+ 更新时间: "2026-04-16 09:24:00"
75
+ }
76
+ },
77
+ {
78
+ id: "water-002",
79
+ type: "水文检测",
80
+ name: "水位监测点 W02",
81
+ position: {
82
+ x: 37402450.077,
83
+ y: 4277439.597,
84
+ z: 969.657
85
+ },
86
+ data: {
87
+ 水压: "0.27MPa",
88
+ 水位: "0.98m",
89
+ 更新时间: "2026-04-16 09:25:00"
90
+ }
91
+ },
92
+ {
93
+ id: "water-003",
94
+ type: "水文检测",
95
+ name: "排水监测点 W03",
96
+ position: {
97
+ x: 37402927.758,
98
+ y: 4277425.087,
99
+ z: 968.275
100
+ },
101
+ data: {
102
+ 流量: "8.4m3/h",
103
+ 设备状态: "正常",
104
+ 更新时间: "2026-04-16 09:19:00"
105
+ }
106
+ },
107
+ {
108
+ id: "pipe-001",
109
+ type: "束管监测点",
110
+ name: "束管监测点 B01",
111
+ position: {
112
+ x: 37402928.074769,
113
+ y: 4276812.747541,
114
+ z: 976.429
115
+ },
116
+ data: {
117
+ O2: "20.7%",
118
+ CO: "9ppm",
119
+ CH4: "0.35%"
120
+ }
121
+ },
122
+ {
123
+ id: "pipe-002",
124
+ type: "束管监测点",
125
+ name: "束管监测点 B02",
126
+ position: {
127
+ x: 37403416.272279,
128
+ y: 4277276.585584,
129
+ z: 975.058
130
+ },
131
+ data: {
132
+ O2: "20.5%",
133
+ CO: "13ppm",
134
+ CH4: "0.41%"
135
+ }
136
+ },
137
+ {
138
+ id: "pipe-003",
139
+ type: "束管监测点",
140
+ name: "束管监测点 B03",
141
+ position: {
142
+ x: 37403448.868677,
143
+ y: 4276813.832518,
144
+ z: 974.554
145
+ },
146
+ data: {
147
+ O2: "20.8%",
148
+ CO: "8ppm",
149
+ CH4: "0.29%"
150
+ }
151
+ }
152
+ ] };
153
+ //#endregion
154
+ export { e as default };
package/package.json CHANGED
@@ -1,18 +1,20 @@
1
1
  {
2
2
  "name": "@zhangdali1996/lr-map-viewer",
3
3
  "private": false,
4
- "version": "0.0.9",
4
+ "version": "0.0.11",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
8
8
  ],
9
9
  "main": "./dist/lr-map-viewer.js",
10
10
  "module": "./dist/lr-map-viewer.js",
11
+ "style": "./dist/lr-map-viewer.css",
11
12
  "exports": {
12
13
  ".": {
13
14
  "import": "./dist/lr-map-viewer.js",
14
15
  "default": "./dist/lr-map-viewer.js"
15
16
  },
17
+ "./style.css": "./dist/lr-map-viewer.css",
16
18
  "./package.json": "./package.json"
17
19
  },
18
20
  "scripts": {
@@ -22,7 +24,6 @@
22
24
  "**/*.css"
23
25
  ],
24
26
  "dependencies": {
25
- "@longruan/lr-map": "^0.2.2",
26
27
  "pako": "^2.1.0"
27
28
  },
28
29
  "peerDependencies": {