@kq_npm/client3d_webgl_vue 4.5.4-beta → 4.5.6-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.
- package/aspectanalysis/index.js +7 -5
- package/boxclip/index.js +7 -6
- package/clientPrint/index.js +50208 -1835
- package/excavatefillanalysis/index.js +8 -7
- package/flight/index.js +1 -1
- package/floodanalysis/index.js +8 -6
- package/geologicalbodyanalysis/index.js +6 -4
- package/gpuspatialquery/index.js +7 -6
- package/heatmap3d/index.js +4 -4
- package/index.js +281 -183
- package/isolineanalysis/index.js +7 -6
- package/measure/index.js +2 -2
- package/modelFlat/index.js +64 -41
- package/modelexcavate/index.js +22 -17
- package/modelselect/index.js +7 -6
- package/package.json +1 -1
- package/planeclip/index.js +7 -6
- package/scaneffect/index.js +4 -4
- package/sceneadvancedtoimage/index.js +4 -2
- package/sceneapp/index.js +12 -8
- package/sceneview/index.js +11904 -11827
- package/shadowanalysis/index.js +6 -4
- package/skylineanalysis/index.js +7 -5
- package/slopeanalysis/index.js +7 -5
- package/slopeaspectanalysis/index.js +8 -5
- package/terrainoperation/index.js +8 -6
- package/terrainprofileanalysis/index.js +7 -5
package/aspectanalysis/index.js
CHANGED
|
@@ -225,9 +225,9 @@ var defineProperty = __webpack_require__(6913);
|
|
|
225
225
|
var message = __webpack_require__(3275);
|
|
226
226
|
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/AspectAnalysisViewModel.js
|
|
227
227
|
|
|
228
|
-
/*
|
|
229
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
230
|
-
* All rights reserved.
|
|
228
|
+
/*
|
|
229
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
230
|
+
* All rights reserved.
|
|
231
231
|
*/
|
|
232
232
|
/**
|
|
233
233
|
* 坡向逻辑类
|
|
@@ -242,6 +242,8 @@ class AspectAnalysisViewModel {
|
|
|
242
242
|
viewer: null,
|
|
243
243
|
_drawManager: null
|
|
244
244
|
});
|
|
245
|
+
(0,defineProperty/* default */.A)(this, "_language", {});
|
|
246
|
+
this._language = scenceView._language;
|
|
245
247
|
this._globaOptions.viewer = scenceView._viewer;
|
|
246
248
|
let options = {
|
|
247
249
|
interval: aspect.interval || 500,
|
|
@@ -277,13 +279,13 @@ class AspectAnalysisViewModel {
|
|
|
277
279
|
}
|
|
278
280
|
} else {
|
|
279
281
|
(0,message/* default */.A)({
|
|
280
|
-
message: "
|
|
282
|
+
message: this._language["stkTerrainAnalysisTips"],
|
|
281
283
|
type: "warning"
|
|
282
284
|
});
|
|
283
285
|
}
|
|
284
286
|
} else {
|
|
285
287
|
(0,message/* default */.A)({
|
|
286
|
-
message: "
|
|
288
|
+
message: this._language["terrainAnalysisTips"],
|
|
287
289
|
type: "warning"
|
|
288
290
|
});
|
|
289
291
|
}
|
package/boxclip/index.js
CHANGED
|
@@ -255,15 +255,13 @@ var message = __webpack_require__(3275);
|
|
|
255
255
|
|
|
256
256
|
|
|
257
257
|
|
|
258
|
-
/*
|
|
259
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
260
|
-
* All rights reserved.
|
|
258
|
+
/*
|
|
259
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
260
|
+
* All rights reserved.
|
|
261
261
|
*/
|
|
262
262
|
//Box裁剪逻辑类
|
|
263
263
|
|
|
264
264
|
class BoxClipViewModel {
|
|
265
|
-
//绘制完成监听事件
|
|
266
|
-
|
|
267
265
|
constructor(scenceView, options) {
|
|
268
266
|
(0,defineProperty/* default */.A)(this, "_viewer", null);
|
|
269
267
|
//三维viewer对象
|
|
@@ -294,6 +292,9 @@ class BoxClipViewModel {
|
|
|
294
292
|
(0,defineProperty/* default */.A)(this, "_drawManager", null);
|
|
295
293
|
//绘制管理对象
|
|
296
294
|
(0,defineProperty/* default */.A)(this, "_removeEventListener", null);
|
|
295
|
+
//绘制完成监听事件
|
|
296
|
+
(0,defineProperty/* default */.A)(this, "_language", {});
|
|
297
|
+
this._language = scenceView._language;
|
|
297
298
|
this._options = Object.assign({}, options, this._defaultOptions);
|
|
298
299
|
this._viewer = scenceView._viewer;
|
|
299
300
|
// this._viewer.enabledFXAA = true;
|
|
@@ -351,7 +352,7 @@ class BoxClipViewModel {
|
|
|
351
352
|
});
|
|
352
353
|
} else {
|
|
353
354
|
(0,message/* default */.A)({
|
|
354
|
-
message: "
|
|
355
|
+
message: this._language["addModelClipTips"],
|
|
355
356
|
type: "warning"
|
|
356
357
|
});
|
|
357
358
|
}
|