@kq_npm/client3d_webgl_vue 4.0.2-beta → 4.0.4-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/index.js +16305 -13054
- package/modelfilter/index.js +953 -0
- package/modelfilter/style/index.js +3 -0
- package/modelfilter/style/modelfilter.css +1 -0
- package/{profileanalysis → modelprofileanalysis}/index.js +24 -24
- package/modelprofileanalysis/style/index.js +3 -0
- package/modelprofileanalysis/style/modelprofileanalysis.css +1 -0
- package/package.json +1 -1
- package/scenceview/index.js +9919 -6548
- package/style.css +1 -1
- package/underground/index.js +10 -14
- package/videofusion/index.js +1461 -0
- package/videofusion/style/index.js +3 -0
- package/videofusion/style/videofusion.css +1 -0
- package/videoproject/index.js +1449 -0
- package/videoproject/style/index.js +3 -0
- package/videoproject/style/videoproject.css +1 -0
- package/profileanalysis/style/index.js +0 -3
- package/profileanalysis/style/profileanalysis.css +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.kq3d-model-filter{z-index:999;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;width:300px;height:285px;background-color:var(--kq-bg-color)}.kq3d-model-filter .kq3d-model-filter-box{height:calc(100% - 35px)}.kq3d-model-filter .kq3d-model-filter-box .rowClass{width:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.kq3d-model-filter .kq3d-model-filter-box .kq3d-modle-filter-span{font-size:14px;color:#606266}.kq3d-model-filter .kq3d-model-filter-box .kq-form-item__content{text-align:end;display:block}.kq3d-model-filter .kq3d-model-filter-box .kq-slider{width:100%}.kq3d-model-filter .kq3d-model-filter-box .title span{color:var(--kq-text-color-regular);font-size:var(--kq-font-size-base)}.kq3d-model-filter .kq3d-model-filter-box .kq-form-item{margin-bottom:10px}.kq3d-model-filter .modelTable{width:100%;font-size:14px;margin-top:15px}.kq3d-model-filter .modelTable .kq-form-item__label{width:96px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-left:13px}.kq3d-model-filter .modelTable .kq-input-number.is-controls-right{width:65px}.kq3d-model-filter .modelTable .kq-input-number.is-controls-right .kq-input-number__decrease,.kq3d-model-filter .modelTable .kq-input-number.is-controls-right .kq-input-number__increase{width:20px}.kq3d-model-filter .modelTable .kq-input-number.is-controls-right .kq-input__wrapper{padding-left:0;padding-right:20px}.kq3d-model-filter .footer-buttons{text-align:right}
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
/******/ "use strict";
|
|
3
3
|
/******/ var __webpack_modules__ = ({
|
|
4
4
|
|
|
5
|
-
/***/
|
|
5
|
+
/***/ 7395:
|
|
6
6
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7
7
|
|
|
8
8
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
9
|
-
/* harmony export */ "Z": function() { return /* binding */
|
|
9
|
+
/* harmony export */ "Z": function() { return /* binding */ ModelProfileAnalysisViewModel; }
|
|
10
10
|
/* harmony export */ });
|
|
11
11
|
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
12
12
|
//分析逻辑类
|
|
@@ -15,7 +15,7 @@ let floatingPoint;
|
|
|
15
15
|
let drawPoints = [];
|
|
16
16
|
let activeShapePoints = [];
|
|
17
17
|
let activeCartographicPoints = [];
|
|
18
|
-
class
|
|
18
|
+
class ModelProfileAnalysisViewModel {
|
|
19
19
|
//剖面分析三维对象
|
|
20
20
|
//显示结果的DOM元素
|
|
21
21
|
//显示结果的DOM元素显隐
|
|
@@ -414,32 +414,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
414
414
|
|
|
415
415
|
// EXPORTS
|
|
416
416
|
__webpack_require__.d(__webpack_exports__, {
|
|
417
|
-
"
|
|
418
|
-
"default": function() { return /* reexport */
|
|
417
|
+
"ModelProfileAnalysisViewModel": function() { return /* reexport */ ModelProfileAnalysisViewModel/* default */.Z; },
|
|
418
|
+
"default": function() { return /* reexport */ ModelProfileAnalysis; }
|
|
419
419
|
});
|
|
420
420
|
|
|
421
421
|
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
422
422
|
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
423
423
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
424
424
|
var gis_utils_ = __webpack_require__(826);
|
|
425
|
-
// EXTERNAL MODULE: ./src/webgl/
|
|
426
|
-
var
|
|
425
|
+
// EXTERNAL MODULE: ./src/webgl/modelprofileanalysis/ModelProfileAnalysisViewModel.js
|
|
426
|
+
var ModelProfileAnalysisViewModel = __webpack_require__(7395);
|
|
427
427
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
428
428
|
var client_icons_vue_ = __webpack_require__(348);
|
|
429
429
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
430
430
|
var util_ = __webpack_require__(9519);
|
|
431
431
|
// EXTERNAL MODULE: external "vue-i18n/dist/vue-i18n.cjs.js"
|
|
432
432
|
var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
433
|
-
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-2.use!./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/
|
|
433
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js??clonedRuleSet-2.use!./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/modelprofileanalysis/ModelProfileAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
434
434
|
|
|
435
435
|
const _hoisted_1 = {
|
|
436
|
-
class: "kq3d-profile-analysis-box"
|
|
436
|
+
class: "kq3d-model-profile-analysis-box"
|
|
437
437
|
};
|
|
438
438
|
const _hoisted_2 = {
|
|
439
|
-
class: "kq3d-profile-analysis-footer"
|
|
439
|
+
class: "kq3d-model-profile-analysis-footer"
|
|
440
440
|
};
|
|
441
441
|
const _hoisted_3 = {
|
|
442
|
-
class: "kq3d-profile-analysis-result"
|
|
442
|
+
class: "kq3d-model-profile-analysis-result"
|
|
443
443
|
};
|
|
444
444
|
const _hoisted_4 = {
|
|
445
445
|
id: "resultCahrt",
|
|
@@ -452,9 +452,9 @@ const _hoisted_4 = {
|
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
const __default__ = {
|
|
455
|
-
name: "
|
|
455
|
+
name: "Kq3dModelProfileAnalysis"
|
|
456
456
|
};
|
|
457
|
-
/* harmony default export */ var
|
|
457
|
+
/* harmony default export */ var ModelProfileAnalysisvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
458
458
|
props: {
|
|
459
459
|
// 设置参数
|
|
460
460
|
settingParams: {
|
|
@@ -550,7 +550,7 @@ const __default__ = {
|
|
|
550
550
|
let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
551
551
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
|
|
552
552
|
language.value = messages.value[newVal]["webgl"];
|
|
553
|
-
headerTempTitle.value = language.value.
|
|
553
|
+
headerTempTitle.value = language.value.modelProfileAnalysis;
|
|
554
554
|
viewModel && viewModel.changeLanguage(language.value);
|
|
555
555
|
});
|
|
556
556
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
@@ -564,7 +564,7 @@ const __default__ = {
|
|
|
564
564
|
});
|
|
565
565
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
566
566
|
if (scenceView) {
|
|
567
|
-
viewModel = new
|
|
567
|
+
viewModel = new ModelProfileAnalysisViewModel/* default */.Z(scenceView, {
|
|
568
568
|
perspectiveAngle: formItem.perspectiveAngle,
|
|
569
569
|
// 透视角度
|
|
570
570
|
targetAreaWidth: formItem.targetAreaWidth,
|
|
@@ -662,7 +662,7 @@ const __default__ = {
|
|
|
662
662
|
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
663
663
|
|
|
664
664
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
665
|
-
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-profile-analysis", {
|
|
665
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-model-profile-analysis", {
|
|
666
666
|
'kq-box-shadow': __props.showShadow
|
|
667
667
|
}]),
|
|
668
668
|
ref_key: "boxRef",
|
|
@@ -674,7 +674,7 @@ const __default__ = {
|
|
|
674
674
|
}, null, 512
|
|
675
675
|
/* NEED_PATCH */
|
|
676
676
|
)) : (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, {
|
|
677
|
-
class: "kq3d-profile-analysis-tip"
|
|
677
|
+
class: "kq3d-model-profile-analysis-tip"
|
|
678
678
|
}, {
|
|
679
679
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).profileTips), 1
|
|
680
680
|
/* TEXT */
|
|
@@ -981,26 +981,26 @@ const __default__ = {
|
|
|
981
981
|
}
|
|
982
982
|
|
|
983
983
|
}));
|
|
984
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
984
|
+
;// CONCATENATED MODULE: ./src/webgl/modelprofileanalysis/ModelProfileAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
985
985
|
|
|
986
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
986
|
+
;// CONCATENATED MODULE: ./src/webgl/modelprofileanalysis/ModelProfileAnalysis.vue
|
|
987
987
|
|
|
988
988
|
|
|
989
989
|
|
|
990
|
-
const __exports__ =
|
|
990
|
+
const __exports__ = ModelProfileAnalysisvue_type_script_setup_true_lang_js;
|
|
991
991
|
|
|
992
|
-
/* harmony default export */ var
|
|
992
|
+
/* harmony default export */ var ModelProfileAnalysis = (__exports__);
|
|
993
993
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
994
994
|
var init_js_ = __webpack_require__(5406);
|
|
995
995
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
996
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
996
|
+
;// CONCATENATED MODULE: ./src/webgl/modelprofileanalysis/index.js
|
|
997
997
|
|
|
998
998
|
|
|
999
999
|
|
|
1000
1000
|
|
|
1001
|
-
|
|
1001
|
+
ModelProfileAnalysis.install = (Vue, opts) => {
|
|
1002
1002
|
init_js_default()(Vue, opts);
|
|
1003
|
-
Vue.component(
|
|
1003
|
+
Vue.component(ModelProfileAnalysis.name, ModelProfileAnalysis);
|
|
1004
1004
|
};
|
|
1005
1005
|
|
|
1006
1006
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.kq3d-model-profile-analysis{z-index:999;border-radius:var(--kq-border-radius-base);padding:16px;pointer-events:auto;cursor:default;background-color:var(--kq-bg-color)}.kq3d-model-profile-analysis .kq3d-model-profile-analysis-box{width:372px}.kq3d-model-profile-analysis .kq3d-model-profile-analysis-tip{color:var(--kq-text-color-regular);font-size:var(--kq-font-size-base)}.kq3d-model-profile-analysis .kq3d-model-profile-analysis-tip p{margin-top:0;margin-bottom:16px}.kq3d-model-profile-analysis .kq-collapse{border:unset}.kq3d-model-profile-analysis .kq-collapse .kq-collapse-item__header{border:unset;height:38px;background-color:var(--kq-fill-color-light);font-weight:700;padding:0 16px;font-size:16px}.kq3d-model-profile-analysis .kq-collapse .kq-collapse-item__arrow{margin:0 0 0 auto}.kq3d-model-profile-analysis .kq-collapse .kq-collapse-item__wrap .kq-collapse-item__content{padding-bottom:unset;border:unset;padding-top:10px}.kq3d-model-profile-analysis .kq-form-item{margin-bottom:8px}.kq3d-model-profile-analysis .kq-form-item__content{text-align:end;display:block}.kq3d-model-profile-analysis .kq-row{display:block}.kq3d-model-profile-analysis .kq-row .kq-checkbox{margin-bottom:8px}.kq3d-model-profile-analysis .kq-slider{width:93%;padding-left:7px}.kq3d-model-profile-analysis .kq-slider .kq-slider__button{width:14px;height:14px}.kq3d-model-profile-analysis .kq-input-number.is-controls-right{width:65px}.kq3d-model-profile-analysis .kq-input-number.is-controls-right .kq-input-number__decrease,.kq3d-model-profile-analysis .kq-input-number.is-controls-right .kq-input-number__increase{width:20px}.kq3d-model-profile-analysis .kq-col-8 .kq-input-number .kq-input__wrapper,.kq3d-model-profile-analysis .kq-input-number.is-controls-right .kq-input__wrapper{padding-left:0;padding-right:20px}.kq3d-model-profile-analysis .kq-color-picker,.kq3d-model-profile-analysis .kq-color-picker .kq-color-picker__mask,.kq3d-model-profile-analysis .kq-color-picker .kq-color-picker__trigger{width:100%}.kq3d-model-profile-analysis .kq3d-model-profile-analysis-footer{padding:16px 0 0;text-align:right}.kq3d-model-profile-analysis .kq3d-model-profile-analysis-result .resultCahrt{margin-top:16px;height:370px;background:var(--kq-fill-color-light);border:1px solid var(--kq-border-color-light);border-radius:4px}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"4.0.
|
|
1
|
+
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"4.0.4-beta","homepage":"","keywords":["KQGIS","webGL","Vue"],"browserslist":["> 1%","last 2 versions","not dead","not ie 11"],"author":"KQWEB GROUP","license":"Apache-2.0","dependencies":{"colorcolor":"^1.1.1","echarts":"^5.3.3","js-cookie":"^3.0.1","omit.js":"^2.0.2","save":"^2.5.0","tinycolor2":"^1.4.2","vue-i18n":"9.2.0-beta.36","xlsx":"^0.18.5","css-vars-ponyfill":"^2.4.8","html2canvas":"^1.4.1","xe-utils":"^3.5.4"}}
|