@kq_npm/client3d_webgl_vue 3.0.6-beta → 3.0.8-beta

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.
Files changed (43) hide show
  1. package/adddata/index.js +40 -177
  2. package/aspectanalysis/index.js +47 -179
  3. package/aspectanalysis/style/aspectanalysis.css +1 -1
  4. package/baseterraingallery/index.js +55 -191
  5. package/baseterraingallery/style/baseterraingallery.css +1 -1
  6. package/boxclip/index.js +50 -182
  7. package/boxclip/style/boxclip.css +1 -1
  8. package/excavatefillanalysis/index.js +60 -181
  9. package/excavatefillanalysis/style/excavatefillanalysis.css +1 -1
  10. package/floodanalysis/index.js +9 -6
  11. package/floodanalysis/style/floodanalysis.css +1 -1
  12. package/gpuspatialquery/index.js +6 -3
  13. package/gpuspatialquery/style/gpuspatialquery.css +1 -1
  14. package/index.js +551 -350
  15. package/isolineanalysis/index.js +34 -31
  16. package/isolineanalysis/style/isolineanalysis.css +1 -1
  17. package/modelselect/index.js +9 -6
  18. package/modelselect/style/modelselect.css +1 -1
  19. package/package.json +1 -1
  20. package/particleeffect/index.js +6 -3
  21. package/particleeffect/style/particleeffect.css +1 -1
  22. package/planeclip/index.js +10 -7
  23. package/planeclip/style/planeclip.css +1 -1
  24. package/profileanalysis/index.js +9 -6
  25. package/profileanalysis/style/profileanalysis.css +1 -1
  26. package/roller/index.js +1 -1
  27. package/roller/style/roller.css +1 -1
  28. package/scenceview/index.js +413 -214
  29. package/shadowanalysis/index.js +17 -14
  30. package/shadowanalysis/style/shadowanalysis.css +1 -1
  31. package/sightlineanalysis/index.js +6 -3
  32. package/sightlineanalysis/style/sightlineanalysis.css +1 -1
  33. package/skylineanalysis/index.js +8 -5
  34. package/skylineanalysis/style/skylineanalysis.css +1 -1
  35. package/slopeanalysis/index.js +21 -18
  36. package/slopeanalysis/style/slopeanalysis.css +1 -1
  37. package/style.css +1 -1
  38. package/terrainoperation/index.js +12 -9
  39. package/terrainoperation/style/terrainoperation.css +1 -1
  40. package/viewshedanalysis/index.js +6 -3
  41. package/viewshedanalysis/style/viewshedanalysis.css +1 -1
  42. package/weathereffect/index.js +7 -4
  43. package/weathereffect/style/weathereffect.css +1 -1
@@ -80,169 +80,6 @@ class BaseterrainGalleryViewModel {
80
80
 
81
81
  }
82
82
 
83
- /***/ }),
84
-
85
- /***/ 519:
86
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
87
-
88
-
89
- // EXPORTS
90
- __webpack_require__.d(__webpack_exports__, {
91
- "default": function() { return /* reexport */ HeaderTemp; }
92
- });
93
-
94
- // EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
95
- var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
96
- // EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
97
- var util_ = __webpack_require__(9519);
98
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
99
-
100
- const _hoisted_1 = {
101
- class: "kq-control-header-temp"
102
- };
103
- const _hoisted_2 = {
104
- class: "_title"
105
- };
106
-
107
-
108
- const __default__ = {
109
- name: "Kq3dHeaderTemp"
110
- };
111
- /* harmony default export */ var HeaderTempvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
112
- props: {
113
- // 是否显示阴影效果
114
- showShadow: {
115
- type: Boolean,
116
- default: true
117
- },
118
- // HeaderTemp标题
119
- headerTempTitle: {
120
- type: String,
121
- default: ""
122
- },
123
- // HeaderTemp图标
124
- headerTempIcon: {
125
- type: Object
126
- },
127
- // HeaderTemp是否折叠
128
- isCollapse: {
129
- type: Boolean,
130
- default: false
131
- },
132
- // HeaderTemp Title&Icon的位置
133
- isRight: {
134
- type: Boolean,
135
- default: true
136
- }
137
- },
138
-
139
- setup(__props, {
140
- expose
141
- }) {
142
- const props = __props;
143
- const proxy = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)(); // 获取组件传参
144
- // 图标组件
145
-
146
- let iconBtn = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
147
- let isCollapse = props.isCollapse;
148
- (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
149
- iconBtn.value = props.headerTempIcon;
150
- let dom = proxy.parent.vnode.el;
151
-
152
- if (!props.isRight) {
153
- (0,util_.addClass)(dom, ["kq-is-show", "kq-is-left"]);
154
- }
155
-
156
- if (isCollapse) {
157
- if (props.showShadow) {
158
- (0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
159
- (0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
160
- } else {
161
- (0,util_.addClass)(dom, "kq-is-hide");
162
- (0,util_.removeClass)(dom, "kq-is-show");
163
- }
164
- } else {
165
- if (props.showShadow) {
166
- (0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
167
- (0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
168
- } else {
169
- (0,util_.removeClass)(dom, "kq-is-hide");
170
- (0,util_.addClass)(dom, "kq-is-show");
171
- }
172
- }
173
- }); // 图标按钮点击事件
174
-
175
- function btnClick() {
176
- isCollapse = !isCollapse;
177
- let dom = proxy.parent.vnode.el;
178
-
179
- if (isCollapse) {
180
- // 折叠
181
- if (props.showShadow) {
182
- (0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
183
- (0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
184
- } else {
185
- (0,util_.addClass)(dom, "kq-is-hide");
186
- (0,util_.removeClass)(dom, "kq-is-show");
187
- }
188
- } else {
189
- // 展开
190
- if (props.showShadow) {
191
- (0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
192
- (0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
193
- } else {
194
- (0,util_.addClass)(dom, "kq-is-show");
195
- (0,util_.removeClass)(dom, "kq-is-hide");
196
- }
197
- }
198
- }
199
-
200
- expose({
201
- btnClick
202
- });
203
- return (_ctx, _cache) => {
204
- const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
205
-
206
- return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(__props.headerTempTitle), 1
207
- /* TEXT */
208
- ), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
209
- class: "_btn kq-control-header-temp_btn",
210
- onClick: btnClick
211
- }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
212
- size: 16
213
- }, {
214
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(iconBtn))))]),
215
- _: 1
216
- /* STABLE */
217
-
218
- })])]);
219
- };
220
- }
221
-
222
- }));
223
- ;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
224
-
225
- ;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue
226
-
227
-
228
-
229
- const __exports__ = HeaderTempvue_type_script_setup_true_lang_js;
230
-
231
- /* harmony default export */ var HeaderTemp = (__exports__);
232
- // EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
233
- var init_js_ = __webpack_require__(5406);
234
- var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
235
- ;// CONCATENATED MODULE: ./src/webgl/headertemp/index.js
236
-
237
-
238
-
239
- HeaderTemp.install = (Vue, opts) => {
240
- init_js_default()(Vue, opts);
241
- Vue.component(HeaderTemp.name, HeaderTemp);
242
- };
243
-
244
-
245
-
246
83
  /***/ }),
247
84
 
248
85
  /***/ 348:
@@ -400,31 +237,34 @@ var BaseterrainGalleryViewModel = __webpack_require__(2109);
400
237
  var const_image_ = __webpack_require__(9702);
401
238
  // EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
402
239
  var client_icons_vue_ = __webpack_require__(348);
403
- // EXTERNAL MODULE: ./src/webgl/headertemp/index.js + 3 modules
404
- var headertemp = __webpack_require__(519);
240
+ // EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
241
+ var util_ = __webpack_require__(9519);
405
242
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/baseterraingallery/BaseterrainGallery.vue?vue&type=script&setup=true&lang=js
406
243
 
407
244
  const _hoisted_1 = {
408
- class: "divSpan"
245
+ class: "kq3d-baseterrain-gallery-box"
409
246
  };
410
247
  const _hoisted_2 = {
248
+ class: "divSpan"
249
+ };
250
+ const _hoisted_3 = {
411
251
  class: "divImg"
412
252
  };
413
- const _hoisted_3 = ["src"];
414
- const _hoisted_4 = {
253
+ const _hoisted_4 = ["src"];
254
+ const _hoisted_5 = {
415
255
  class: "divText"
416
256
  };
417
- const _hoisted_5 = {
257
+ const _hoisted_6 = {
418
258
  class: "text"
419
259
  };
420
- const _hoisted_6 = {
260
+ const _hoisted_7 = {
421
261
  class: "divImg"
422
262
  };
423
- const _hoisted_7 = ["src"];
424
- const _hoisted_8 = {
263
+ const _hoisted_8 = ["src"];
264
+ const _hoisted_9 = {
425
265
  class: "divText"
426
266
  };
427
- const _hoisted_9 = {
267
+ const _hoisted_10 = {
428
268
  class: "text"
429
269
  };
430
270
 
@@ -446,6 +286,11 @@ const __default__ = {
446
286
  type: Boolean,
447
287
  default: true
448
288
  },
289
+
290
+ /**
291
+ * 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
292
+ */
293
+ position: [String, Object],
449
294
  // 是否生成HeaderTemp
450
295
  showHeaderTemp: {
451
296
  type: Boolean,
@@ -482,8 +327,18 @@ const __default__ = {
482
327
  let currentIndex = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(2);
483
328
  let currentTerrain = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(""); //逻辑类对象
484
329
 
485
- let viewModel = null;
330
+ let viewModel = null; // 组件容器Ref
331
+
332
+ let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
333
+
334
+ let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
335
+ let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
486
336
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
337
+ (0,util_.updatePosition)(boxRef.value, props);
338
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
339
+ (0,util_.updatePosition)(boxRef.value, props);
340
+ });
341
+ watchCreateHeaderTemp();
487
342
  currentIndex.value = props.selectIndex;
488
343
  gis_utils_.utils.getWebMap(null, scenceView => {
489
344
  if (scenceView) {
@@ -494,6 +349,16 @@ const __default__ = {
494
349
  }
495
350
  });
496
351
  });
352
+ /**
353
+ * @description 监听header生成
354
+ */
355
+
356
+ const watchCreateHeaderTemp = () => {
357
+ if (props.showHeaderTemp) {
358
+ // 生成headerTemp
359
+ headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
360
+ }
361
+ };
497
362
 
498
363
  function changSelectTerrain() {
499
364
  switch (currentIndex.value) {
@@ -549,17 +414,16 @@ const __default__ = {
549
414
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
550
415
  class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-baseterrain-gallery", {
551
416
  'kq-box-shadow': __props.showShadow
552
- }])
553
- }, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headertemp["default"]), {
417
+ }]),
418
+ ref_key: "boxRef",
419
+ ref: boxRef
420
+ }, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
554
421
  key: 0,
555
- showShadow: __props.showShadow,
556
- headerTempTitle: __props.headerTempTitle || (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).onlineTerrain,
557
- headerTempIcon: __props.headerTempIcon,
558
- isCollapse: __props.isCollapseHeaderTemp,
559
- isRight: __props.isRight
560
- }, null, 8
561
- /* PROPS */
562
- , ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
422
+ ref_key: "headerTempRef",
423
+ ref: headerTempRef
424
+ }, null, 512
425
+ /* NEED_PATCH */
426
+ )) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
563
427
  style: {
564
428
  "line-height": "48px",
565
429
  "height": "48px"
@@ -568,7 +432,7 @@ const __default__ = {
568
432
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
569
433
  label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).onlineTerrain
570
434
  }, {
571
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentTerrain)), 1
435
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentTerrain)), 1
572
436
  /* TEXT */
573
437
  )]),
574
438
  _: 1
@@ -585,16 +449,16 @@ const __default__ = {
585
449
  span: 24
586
450
  }, {
587
451
  default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, null, {
588
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row @click=\"clickHandler(0)\" :class=\"currentIndex == 0 ? 'active' : ''\">\r\n <kq-col :span=\"5\">\r\n <img :src=\"TDT_TERRAiIN_URL\" alt=\"\" />\r\n </kq-col>\r\n <kq-col :span=\"19\">{{ language.tiandituTerrain }} </kq-col>\r\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
452
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" <kq-row @click=\"clickHandler(0)\" :class=\"currentIndex == 0 ? 'active' : ''\">\r\n <kq-col :span=\"5\">\r\n <img :src=\"TDT_TERRAiIN_URL\" alt=\"\" />\r\n </kq-col>\r\n <kq-col :span=\"19\">{{ language.tiandituTerrain }} </kq-col>\r\n </kq-row> "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
589
453
  onClick: _cache[0] || (_cache[0] = $event => clickHandler(1)),
590
454
  class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentIndex) == 1 ? 'active' : '')
591
455
  }, {
592
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
456
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
593
457
  src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(const_image_.CESIUM_TERRAiIN_URL),
594
458
  alt: ""
595
459
  }, null, 8
596
460
  /* PROPS */
597
- , _hoisted_3)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_5, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).cesiumTerrain), 1
461
+ , _hoisted_4)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_5, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).cesiumTerrain), 1
598
462
  /* TEXT */
599
463
  )])]),
600
464
  _: 1
@@ -606,12 +470,12 @@ const __default__ = {
606
470
  onClick: _cache[1] || (_cache[1] = $event => clickHandler(2)),
607
471
  class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(currentIndex) == 2 ? 'active' : '')
608
472
  }, {
609
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
473
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_7, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
610
474
  src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(const_image_.NO_TERRAiIN_URL),
611
475
  alt: ""
612
476
  }, null, 8
613
477
  /* PROPS */
614
- , _hoisted_7)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_8, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).ellipsoidTerrain), 1
478
+ , _hoisted_8)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_10, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).ellipsoidTerrain), 1
615
479
  /* TEXT */
616
480
  )])]),
617
481
  _: 1
@@ -631,7 +495,7 @@ const __default__ = {
631
495
  _: 1
632
496
  /* STABLE */
633
497
 
634
- })], 2
498
+ })])], 2
635
499
  /* CLASS */
636
500
  );
637
501
  };
@@ -1 +1 @@
1
- .kq3d-baseterrain-gallery{z-index:999;width:372px;min-width:220px;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq3d-baseterrain-gallery .kq-form-item__label{height:48px;line-height:48px}.kq3d-baseterrain-gallery .kq-form-item{margin-bottom:0;width:100%}.kq3d-baseterrain-gallery .kq-form-item__content{text-align:end;display:block}.kq3d-baseterrain-gallery .divSpan{width:calc(100% - 16px);height:24px;line-height:24px;border-radius:var(--kq-border-radius-base);background-color:var(--kq-fill-color-blank);text-align:left;padding:12px 8px;font-family:Noto Sans SC;font-style:normal;font-weight:400;font-size:16px;color:var(--kq-text-color-primary);-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-font-feature-settings:"tnum" on,"lnum" on;font-feature-settings:"tnum" on,"lnum" on}.kq3d-baseterrain-gallery .kq-col-24{padding:8px;margin-top:16px;border:1px solid var(--kq-border-color);border-radius:var(--kq-border-radius-base);background-color:var(--kq-fill-color-lighter)}.kq3d-baseterrain-gallery .kq-form .kq-row{margin-left:0!important;margin-right:0!important;cursor:pointer;position:relative}.kq3d-baseterrain-gallery .kq-form .kq-row .divImg{height:72px;line-height:72px;font-family:Noto Sans SC;font-style:normal;font-weight:400;font-size:14px;padding-left:0!important;padding-right:0!important;color:var(--kq-text-color-primary)}.kq3d-baseterrain-gallery .kq-form .kq-row .divImg img{width:64px;height:64px;margin:4px;border:1px solid #c0c4cc}.kq3d-baseterrain-gallery .kq-form .kq-row .divText{position:absolute;right:8px;top:4px;bottom:4px;left:76px}.kq3d-baseterrain-gallery .kq-form .kq-row .divText .text{display:inline-block;height:64px;line-height:64px}.kq3d-baseterrain-gallery .kq-form .kq-row.active{background-color:var(--kq-color-primary-light-8)}
1
+ .kq3d-baseterrain-gallery{z-index:999;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq3d-baseterrain-gallery .kq3d-baseterrain-gallery-box{width:372px;min-width:220px}.kq3d-baseterrain-gallery .kq-form-item__label{height:48px;line-height:48px}.kq3d-baseterrain-gallery .kq-form-item{margin-bottom:0;width:100%}.kq3d-baseterrain-gallery .kq-form-item__content{text-align:end;display:block}.kq3d-baseterrain-gallery .divSpan{width:calc(100% - 16px);height:24px;line-height:24px;border-radius:var(--kq-border-radius-base);background-color:var(--kq-fill-color-blank);text-align:left;padding:12px 8px;font-family:Noto Sans SC;font-style:normal;font-weight:400;font-size:16px;color:var(--kq-text-color-primary);-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-font-feature-settings:"tnum" on,"lnum" on;font-feature-settings:"tnum" on,"lnum" on}.kq3d-baseterrain-gallery .kq-col-24{padding:8px;margin-top:16px;border:1px solid var(--kq-border-color);border-radius:var(--kq-border-radius-base);background-color:var(--kq-fill-color-lighter)}.kq3d-baseterrain-gallery .kq-form .kq-row{margin-left:0!important;margin-right:0!important;cursor:pointer;position:relative}.kq3d-baseterrain-gallery .kq-form .kq-row .divImg{height:72px;line-height:72px;font-family:Noto Sans SC;font-style:normal;font-weight:400;font-size:14px;padding-left:0!important;padding-right:0!important;color:var(--kq-text-color-primary)}.kq3d-baseterrain-gallery .kq-form .kq-row .divImg img{width:64px;height:64px;margin:4px;border:1px solid #c0c4cc}.kq3d-baseterrain-gallery .kq-form .kq-row .divText{position:absolute;right:8px;top:4px;bottom:4px;left:76px}.kq3d-baseterrain-gallery .kq-form .kq-row .divText .text{display:inline-block;height:64px;line-height:64px}.kq3d-baseterrain-gallery .kq-form .kq-row.active{background-color:var(--kq-color-primary-light-8)}
package/boxclip/index.js CHANGED
@@ -202,169 +202,6 @@ class BoxClipViewModel {
202
202
 
203
203
  }
204
204
 
205
- /***/ }),
206
-
207
- /***/ 519:
208
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
209
-
210
-
211
- // EXPORTS
212
- __webpack_require__.d(__webpack_exports__, {
213
- "default": function() { return /* reexport */ HeaderTemp; }
214
- });
215
-
216
- // EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
217
- var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
218
- // EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
219
- var util_ = __webpack_require__(9519);
220
- ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
221
-
222
- const _hoisted_1 = {
223
- class: "kq-control-header-temp"
224
- };
225
- const _hoisted_2 = {
226
- class: "_title"
227
- };
228
-
229
-
230
- const __default__ = {
231
- name: "Kq3dHeaderTemp"
232
- };
233
- /* harmony default export */ var HeaderTempvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
234
- props: {
235
- // 是否显示阴影效果
236
- showShadow: {
237
- type: Boolean,
238
- default: true
239
- },
240
- // HeaderTemp标题
241
- headerTempTitle: {
242
- type: String,
243
- default: ""
244
- },
245
- // HeaderTemp图标
246
- headerTempIcon: {
247
- type: Object
248
- },
249
- // HeaderTemp是否折叠
250
- isCollapse: {
251
- type: Boolean,
252
- default: false
253
- },
254
- // HeaderTemp Title&Icon的位置
255
- isRight: {
256
- type: Boolean,
257
- default: true
258
- }
259
- },
260
-
261
- setup(__props, {
262
- expose
263
- }) {
264
- const props = __props;
265
- const proxy = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.getCurrentInstance)(); // 获取组件传参
266
- // 图标组件
267
-
268
- let iconBtn = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
269
- let isCollapse = props.isCollapse;
270
- (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
271
- iconBtn.value = props.headerTempIcon;
272
- let dom = proxy.parent.vnode.el;
273
-
274
- if (!props.isRight) {
275
- (0,util_.addClass)(dom, ["kq-is-show", "kq-is-left"]);
276
- }
277
-
278
- if (isCollapse) {
279
- if (props.showShadow) {
280
- (0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
281
- (0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
282
- } else {
283
- (0,util_.addClass)(dom, "kq-is-hide");
284
- (0,util_.removeClass)(dom, "kq-is-show");
285
- }
286
- } else {
287
- if (props.showShadow) {
288
- (0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
289
- (0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
290
- } else {
291
- (0,util_.removeClass)(dom, "kq-is-hide");
292
- (0,util_.addClass)(dom, "kq-is-show");
293
- }
294
- }
295
- }); // 图标按钮点击事件
296
-
297
- function btnClick() {
298
- isCollapse = !isCollapse;
299
- let dom = proxy.parent.vnode.el;
300
-
301
- if (isCollapse) {
302
- // 折叠
303
- if (props.showShadow) {
304
- (0,util_.addClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
305
- (0,util_.removeClass)(dom, ["kq-is-show", "kq-box-shadow"]);
306
- } else {
307
- (0,util_.addClass)(dom, "kq-is-hide");
308
- (0,util_.removeClass)(dom, "kq-is-show");
309
- }
310
- } else {
311
- // 展开
312
- if (props.showShadow) {
313
- (0,util_.addClass)(dom, ["kq-is-show", "kq-box-shadow"]);
314
- (0,util_.removeClass)(dom, ["kq-is-hide", "kq-light-shadow"]);
315
- } else {
316
- (0,util_.addClass)(dom, "kq-is-show");
317
- (0,util_.removeClass)(dom, "kq-is-hide");
318
- }
319
- }
320
- }
321
-
322
- expose({
323
- btnClick
324
- });
325
- return (_ctx, _cache) => {
326
- const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
327
-
328
- return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(__props.headerTempTitle), 1
329
- /* TEXT */
330
- ), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
331
- class: "_btn kq-control-header-temp_btn",
332
- onClick: btnClick
333
- }, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
334
- size: 16
335
- }, {
336
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(iconBtn))))]),
337
- _: 1
338
- /* STABLE */
339
-
340
- })])]);
341
- };
342
- }
343
-
344
- }));
345
- ;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue?vue&type=script&setup=true&lang=js
346
-
347
- ;// CONCATENATED MODULE: ./src/webgl/headertemp/HeaderTemp.vue
348
-
349
-
350
-
351
- const __exports__ = HeaderTempvue_type_script_setup_true_lang_js;
352
-
353
- /* harmony default export */ var HeaderTemp = (__exports__);
354
- // EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
355
- var init_js_ = __webpack_require__(5406);
356
- var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
357
- ;// CONCATENATED MODULE: ./src/webgl/headertemp/index.js
358
-
359
-
360
-
361
- HeaderTemp.install = (Vue, opts) => {
362
- init_js_default()(Vue, opts);
363
- Vue.component(HeaderTemp.name, HeaderTemp);
364
- };
365
-
366
-
367
-
368
205
  /***/ }),
369
206
 
370
207
  /***/ 348:
@@ -513,17 +350,20 @@ var gis_utils_ = __webpack_require__(826);
513
350
  var BoxClipViewModel = __webpack_require__(219);
514
351
  // EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
515
352
  var client_icons_vue_ = __webpack_require__(348);
516
- // EXTERNAL MODULE: ./src/webgl/headertemp/index.js + 3 modules
517
- var headertemp = __webpack_require__(519);
353
+ // EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
354
+ var util_ = __webpack_require__(9519);
518
355
  ;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/boxclip/BoxClip.vue?vue&type=script&setup=true&lang=js
519
356
 
520
357
  const _hoisted_1 = {
521
- class: "kq3d-box-clip-span"
358
+ class: "kq3d-box-clip-box"
522
359
  };
523
360
  const _hoisted_2 = {
524
361
  class: "kq3d-box-clip-span"
525
362
  };
526
363
  const _hoisted_3 = {
364
+ class: "kq3d-box-clip-span"
365
+ };
366
+ const _hoisted_4 = {
527
367
  class: "kq3d-box-clip-footer"
528
368
  };
529
369
 
@@ -545,6 +385,11 @@ const __default__ = {
545
385
  type: Boolean,
546
386
  default: true
547
387
  },
388
+
389
+ /**
390
+ * 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
391
+ */
392
+ position: [String, Object],
548
393
  // 是否生成HeaderTemp
549
394
  showHeaderTemp: {
550
395
  type: Boolean,
@@ -596,8 +441,21 @@ const __default__ = {
596
441
  clipHeight: props.settingParams && props.settingParams.clipHeight || 4.7,
597
442
  clipRotation: props.settingParams && props.settingParams.clipRotation || 90
598
443
  });
599
- let viewModel = null;
444
+ let viewModel = null; // 组件容器Ref
445
+
446
+ let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 生成组件默认header
447
+
448
+ let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
449
+ let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
600
450
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
451
+ (0,util_.updatePosition)(boxRef.value, props);
452
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.position, (newVal, oldVal) => {
453
+ (0,util_.updatePosition)(boxRef.value, props);
454
+ });
455
+ watchCreateHeaderTemp();
456
+ (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => props.showHeaderTemp, (newVal, oldVal) => {
457
+ watchCreateHeaderTemp();
458
+ });
601
459
  currentLang.value = proxy.$i18n.locale; // 获取当前语言
602
460
  //父组 件ScenceView初始化完成后执行
603
461
 
@@ -630,7 +488,18 @@ const __default__ = {
630
488
  }
631
489
  }
632
490
  }, 1000);
633
- }); // 参数改变
491
+ });
492
+ /**
493
+ * @description 监听header生成
494
+ */
495
+
496
+ const watchCreateHeaderTemp = () => {
497
+ if (props.showHeaderTemp) {
498
+ // 生成headerTemp
499
+ headerTemp.value = (0,util_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef);
500
+ }
501
+ }; // 参数改变
502
+
634
503
 
635
504
  function paramsChanged(key) {
636
505
  switch (key) {
@@ -732,17 +601,16 @@ const __default__ = {
732
601
  return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
733
602
  class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-box-clip", {
734
603
  'kq-box-shadow': __props.showShadow
735
- }])
736
- }, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headertemp["default"]), {
604
+ }]),
605
+ ref_key: "boxRef",
606
+ ref: boxRef
607
+ }, [__props.showHeaderTemp ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
737
608
  key: 0,
738
- showShadow: __props.showShadow,
739
- headerTempTitle: __props.headerTempTitle || (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).boxClip,
740
- headerTempIcon: __props.headerTempIcon,
741
- isCollapse: __props.isCollapseHeaderTemp,
742
- isRight: __props.isRight
743
- }, null, 8
744
- /* PROPS */
745
- , ["showShadow", "headerTempTitle", "headerTempIcon", "isCollapse", "isRight"])) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
609
+ ref_key: "headerTempRef",
610
+ ref: headerTempRef
611
+ }, null, 512
612
+ /* NEED_PATCH */
613
+ )) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
746
614
  gutter: 20,
747
615
  class: "rowClass"
748
616
  }, {
@@ -750,7 +618,7 @@ const __default__ = {
750
618
  span: 6,
751
619
  class: "colClass"
752
620
  }, {
753
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_1, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipObj), 1
621
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipObj), 1
754
622
  /* TEXT */
755
623
  )]),
756
624
  _: 1
@@ -803,7 +671,7 @@ const __default__ = {
803
671
  span: 6,
804
672
  class: "colClass"
805
673
  }, {
806
- default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipPattern), 1
674
+ default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", _hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clipPattern), 1
807
675
  /* TEXT */
808
676
  )]),
809
677
  _: 1
@@ -1332,7 +1200,7 @@ const __default__ = {
1332
1200
 
1333
1201
  }, 8
1334
1202
  /* PROPS */
1335
- , ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
1203
+ , ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
1336
1204
  onClick: _cache[38] || (_cache[38] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clip(), ["stop"])),
1337
1205
  title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clip,
1338
1206
  type: "primary"
@@ -1357,7 +1225,7 @@ const __default__ = {
1357
1225
 
1358
1226
  }, 8
1359
1227
  /* PROPS */
1360
- , ["title"])])], 2
1228
+ , ["title"])])])], 2
1361
1229
  /* CLASS */
1362
1230
  );
1363
1231
  };