@kq_npm/client3d_webgl_vue 0.9.1-beta → 0.9.3-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/adddata/index.js +32 -23
- package/aspectanalysis/index.js +495 -0
- package/aspectanalysis/style/aspectanalysis.css +1 -0
- package/aspectanalysis/style/index.js +3 -0
- package/index.js +471 -52
- package/package.json +1 -1
- package/scenceview/index.js +21 -29
- package/style.css +1 -1
package/index.js
CHANGED
|
@@ -447,6 +447,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
447
447
|
// EXPORTS
|
|
448
448
|
__webpack_require__.d(__webpack_exports__, {
|
|
449
449
|
"Kq3dAddDataViewModel": function() { return /* reexport */ AddDataViewModel; },
|
|
450
|
+
"Kq3dAspectAnalysis": function() { return /* reexport */ AspectAnalysis; },
|
|
451
|
+
"Kq3dAspectAnalysisViewModel": function() { return /* reexport */ AspectAnalysisViewModels; },
|
|
450
452
|
"Kq3dBaseterrainGallery": function() { return /* reexport */ BaseterrainGallery; },
|
|
451
453
|
"Kq3dBaseterrainGalleryViewModel": function() { return /* reexport */ BaseterrainGalleryViewModel; },
|
|
452
454
|
"Kq3dBoxClip": function() { return /* reexport */ BoxClip; },
|
|
@@ -532,15 +534,12 @@ var mitt_default = /*#__PURE__*/__webpack_require__.n(mitt_namespaceObject);
|
|
|
532
534
|
var web_dom_exception_stack_js_namespaceObject = require("core-js/modules/web.dom-exception.stack.js");
|
|
533
535
|
;// CONCATENATED MODULE: external "core-js/modules/es.array.includes.js"
|
|
534
536
|
var es_array_includes_js_namespaceObject = require("core-js/modules/es.array.includes.js");
|
|
535
|
-
;// CONCATENATED MODULE: external "@turf/turf"
|
|
536
|
-
var turf_namespaceObject = require("@turf/turf");
|
|
537
537
|
;// CONCATENATED MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
538
538
|
var const_image_namespaceObject = require("@kq_npm/client_common_vue/_utils/const-image");
|
|
539
539
|
;// CONCATENATED MODULE: ./src/webgl/scenceview/DrawManager.js
|
|
540
540
|
|
|
541
541
|
|
|
542
542
|
|
|
543
|
-
|
|
544
543
|
//绘制操作类
|
|
545
544
|
|
|
546
545
|
class DrawManager {
|
|
@@ -820,10 +819,10 @@ class DrawManager {
|
|
|
820
819
|
if (shape) {
|
|
821
820
|
if (shape.type === that._drawHandler.ShapeTypes.MARKER.type) {
|
|
822
821
|
let position = that.transformPosition(shape._position);
|
|
823
|
-
geoFeature =
|
|
822
|
+
geoFeature = window.turf.point(position);
|
|
824
823
|
} else if (shape.type === that._drawHandler.ShapeTypes.CIRCLE.type) {
|
|
825
824
|
let center = that.transformPosition(shape.center);
|
|
826
|
-
geoFeature =
|
|
825
|
+
geoFeature = window.turf.circle(center, shape.radius, {
|
|
827
826
|
steps: 64,
|
|
828
827
|
units: "meters"
|
|
829
828
|
});
|
|
@@ -832,14 +831,14 @@ class DrawManager {
|
|
|
832
831
|
shape.controlPoints.forEach(function (val) {
|
|
833
832
|
position[0].push(that.transformPosition(val));
|
|
834
833
|
});
|
|
835
|
-
geoFeature =
|
|
834
|
+
geoFeature = window.turf.lineStrings(position).features[0];
|
|
836
835
|
} else if (shape.type === that._drawHandler.ShapeTypes.RECTANGLE.type) {
|
|
837
836
|
let minX = shape.rectangle.west / Math.PI * 180;
|
|
838
837
|
let maxX = shape.rectangle.east / Math.PI * 180;
|
|
839
838
|
let minY = shape.rectangle.south / Math.PI * 180;
|
|
840
839
|
let maxY = shape.rectangle.north / Math.PI * 180;
|
|
841
840
|
let positions1 = [[[minX, minY], [minX, maxY], [maxX, maxY], [maxX, minY], [minX, minY]]];
|
|
842
|
-
geoFeature =
|
|
841
|
+
geoFeature = window.turf.polygon(positions1);
|
|
843
842
|
} else if (shape.type === that._drawHandler.ShapeTypes.POLYGON.type) {
|
|
844
843
|
let positions = [[]];
|
|
845
844
|
let posi;
|
|
@@ -855,7 +854,7 @@ class DrawManager {
|
|
|
855
854
|
positions[0].push(posi);
|
|
856
855
|
}
|
|
857
856
|
});
|
|
858
|
-
geoFeature =
|
|
857
|
+
geoFeature = window.turf.polygon(positions);
|
|
859
858
|
}
|
|
860
859
|
}
|
|
861
860
|
|
|
@@ -2756,31 +2755,27 @@ const __default__ = {
|
|
|
2756
2755
|
props: {
|
|
2757
2756
|
target: {
|
|
2758
2757
|
type: String,
|
|
2759
|
-
default: "cesiumContainer"
|
|
2760
|
-
},
|
|
2761
|
-
options: {
|
|
2762
|
-
type: Object,
|
|
2763
2758
|
|
|
2764
2759
|
default() {
|
|
2765
|
-
return
|
|
2760
|
+
return "cesiumContainer";
|
|
2766
2761
|
}
|
|
2767
2762
|
|
|
2768
2763
|
},
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2764
|
+
options: Object,
|
|
2765
|
+
|
|
2766
|
+
/**
|
|
2767
|
+
* 图层数据源
|
|
2768
|
+
* 事例:
|
|
2769
|
+
* {
|
|
2770
|
+
name: null,// 服务名称
|
|
2771
|
+
url: null,//服务地址
|
|
2772
|
+
token: null,//服务token
|
|
2773
|
+
type: "kqmapserver", //服务类型 kqmapserver或者kq3dserver
|
|
2774
|
+
isShowAllLayers: true,
|
|
2775
|
+
defaultShowLayerNames: []
|
|
2776
|
+
}
|
|
2777
|
+
*/
|
|
2778
|
+
service: Object,
|
|
2784
2779
|
// ScenceView初始化的参数对象,包含初始化范围和layer信息。
|
|
2785
2780
|
scenceInfo: Object,
|
|
2786
2781
|
// 默认显示的图层组名称
|
|
@@ -2802,7 +2797,6 @@ const __default__ = {
|
|
|
2802
2797
|
|
|
2803
2798
|
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({});
|
|
2804
2799
|
let viewModel = null;
|
|
2805
|
-
let removeEventListener = null;
|
|
2806
2800
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.onMounted)(() => {
|
|
2807
2801
|
//设置语言
|
|
2808
2802
|
let _lang = proxy.$i18n.locale;
|
|
@@ -12438,6 +12432,419 @@ SlopeAnalysis.install = (Vue, opts) => {
|
|
|
12438
12432
|
};
|
|
12439
12433
|
|
|
12440
12434
|
|
|
12435
|
+
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/AspectAnalysisViewModel.js
|
|
12436
|
+
|
|
12437
|
+
|
|
12438
|
+
/**
|
|
12439
|
+
* 坡向逻辑类
|
|
12440
|
+
**/
|
|
12441
|
+
class AspectAnalysisViewModels {
|
|
12442
|
+
// 坡向三维对象
|
|
12443
|
+
constructor(scenceView, aspect) {
|
|
12444
|
+
_defineProperty(this, "_aspectAnalysis", null);
|
|
12445
|
+
|
|
12446
|
+
_defineProperty(this, "_globaOptions", {
|
|
12447
|
+
//全局参数
|
|
12448
|
+
viewer: null,
|
|
12449
|
+
_drawManager: null,
|
|
12450
|
+
viewModel: null
|
|
12451
|
+
});
|
|
12452
|
+
|
|
12453
|
+
this._globaOptions.viewer = scenceView._viewer;
|
|
12454
|
+
this._globaOptions.viewModel = {
|
|
12455
|
+
interval: aspect.interval || 500,
|
|
12456
|
+
//采样间隔
|
|
12457
|
+
width: aspect.arrowWidth || 20,
|
|
12458
|
+
// 箭头宽度
|
|
12459
|
+
color: Cesium.Color.fromCssColorString(aspect.color || '#FFFF00'),
|
|
12460
|
+
// 箭头颜色
|
|
12461
|
+
viewer: scenceView._viewer
|
|
12462
|
+
};
|
|
12463
|
+
this._globaOptions.viewer.scene.globe.depthTestAgainstTerrain = true; //开启深度检测
|
|
12464
|
+
|
|
12465
|
+
this._globaOptions.viewer.scene.globe.enableLighting = true;
|
|
12466
|
+
this._globaOptions._drawManager = scenceView._drawManager;
|
|
12467
|
+
let that = this;
|
|
12468
|
+
this._aspectAnalysis = new Cesium.Kq3dAspect(this._globaOptions.viewModel);
|
|
12469
|
+
this._globaOptions._drawFinishedEventListener = this._globaOptions._drawManager.drawFinishedEvent.addEventListener(shape => {
|
|
12470
|
+
if (shape) {
|
|
12471
|
+
that._globaOptions.viewModel.positions = shape._controlPoints;
|
|
12472
|
+
that._aspectAnalysis.positions = positions;
|
|
12473
|
+
|
|
12474
|
+
that._globaOptions._drawManager.clear();
|
|
12475
|
+
}
|
|
12476
|
+
});
|
|
12477
|
+
} // 开始分析
|
|
12478
|
+
|
|
12479
|
+
|
|
12480
|
+
start() {
|
|
12481
|
+
// 判断是否添加了地形
|
|
12482
|
+
if (this._globaOptions.viewModel.viewer.terrainProvider.availability) {
|
|
12483
|
+
if (this._globaOptions._drawManager) {
|
|
12484
|
+
this._globaOptions._drawManager.startDraw("polygon", {
|
|
12485
|
+
clampToGround: true
|
|
12486
|
+
});
|
|
12487
|
+
}
|
|
12488
|
+
} else {
|
|
12489
|
+
throw "请加载地形后分析!";
|
|
12490
|
+
}
|
|
12491
|
+
} // 设置填充纹理颜色
|
|
12492
|
+
|
|
12493
|
+
|
|
12494
|
+
setColorTable(newValue) {
|
|
12495
|
+
this._globaOptions.viewModel.colorTable = newValue;
|
|
12496
|
+
if (this._slopeAnalysis) this._slopeAnalysis.colorTable = this._globaOptions.viewModel.colorTable;
|
|
12497
|
+
} // 清除全部结果
|
|
12498
|
+
|
|
12499
|
+
|
|
12500
|
+
clear() {
|
|
12501
|
+
this._globaOptions._drawManager && this._globaOptions._drawManager.stopDraw();
|
|
12502
|
+
this._aspectAnalysis && this._aspectAnalysis.destroy();
|
|
12503
|
+
this._aspectAnalysis = null;
|
|
12504
|
+
} // 销毁
|
|
12505
|
+
|
|
12506
|
+
|
|
12507
|
+
destroy() {
|
|
12508
|
+
// 移除监听事件
|
|
12509
|
+
this._globaOptions._drawFinishedEventListener && this._globaOptions._drawFinishedEventListener();
|
|
12510
|
+
this._globaOptions._drawFinishedEventListener = null;
|
|
12511
|
+
this._aspectAnalysis && this._aspectAnalysis.destroy();
|
|
12512
|
+
this._aspectAnalysis = null;
|
|
12513
|
+
}
|
|
12514
|
+
|
|
12515
|
+
}
|
|
12516
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/aspectanalysis/AspectAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
12517
|
+
|
|
12518
|
+
const AspectAnalysisvue_type_script_setup_true_lang_js_hoisted_1 = {
|
|
12519
|
+
class: "kq3d-aspect-analysis"
|
|
12520
|
+
};
|
|
12521
|
+
const AspectAnalysisvue_type_script_setup_true_lang_js_hoisted_2 = {
|
|
12522
|
+
class: "kq3d-aspect-analysis-footer"
|
|
12523
|
+
};
|
|
12524
|
+
|
|
12525
|
+
|
|
12526
|
+
|
|
12527
|
+
const AspectAnalysisvue_type_script_setup_true_lang_js_default_ = {
|
|
12528
|
+
name: "Kq3dAspectAnalysis"
|
|
12529
|
+
};
|
|
12530
|
+
/* harmony default export */ var AspectAnalysisvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(AspectAnalysisvue_type_script_setup_true_lang_js_default_, {
|
|
12531
|
+
props: {
|
|
12532
|
+
// 设置参数
|
|
12533
|
+
settingParams: {
|
|
12534
|
+
type: Object
|
|
12535
|
+
}
|
|
12536
|
+
},
|
|
12537
|
+
|
|
12538
|
+
setup(__props, {
|
|
12539
|
+
expose
|
|
12540
|
+
}) {
|
|
12541
|
+
const props = __props;
|
|
12542
|
+
const {
|
|
12543
|
+
proxy
|
|
12544
|
+
} = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.getCurrentInstance)();
|
|
12545
|
+
let currentLang = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)("");
|
|
12546
|
+
let language = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.ref)({}); //计算属性
|
|
12547
|
+
// 获取组件传参
|
|
12548
|
+
// 分析类
|
|
12549
|
+
|
|
12550
|
+
let viewModel = null; // 默认参数
|
|
12551
|
+
|
|
12552
|
+
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.reactive)({
|
|
12553
|
+
interval: props.settingParams && props.settingParams.interval || 500,
|
|
12554
|
+
arrowWidth: props.settingParams && props.settingParams.arrowWidth || 20,
|
|
12555
|
+
arrowColor: props.settingParams && props.settingParams.arrowColor || "#FF0000"
|
|
12556
|
+
});
|
|
12557
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.onMounted)(() => {
|
|
12558
|
+
currentLang.value = proxy.$i18n.locale; // 获取当前语言
|
|
12559
|
+
|
|
12560
|
+
gis_utils_namespaceObject.utils.getWebMap(null, scenceView => {
|
|
12561
|
+
if (scenceView) {
|
|
12562
|
+
language.value = scenceView._language;
|
|
12563
|
+
viewModel = new AspectAnalysisViewModels(scenceView, formItem);
|
|
12564
|
+
}
|
|
12565
|
+
});
|
|
12566
|
+
}); // 参数改变
|
|
12567
|
+
|
|
12568
|
+
function paramsChanged(key) {
|
|
12569
|
+
switch (key) {
|
|
12570
|
+
case "interval":
|
|
12571
|
+
//
|
|
12572
|
+
break;
|
|
12573
|
+
|
|
12574
|
+
case "arrowWidth":
|
|
12575
|
+
// 自定义填充样式区间
|
|
12576
|
+
break;
|
|
12577
|
+
|
|
12578
|
+
case "arrowColor":
|
|
12579
|
+
// 自定义填充样式颜色
|
|
12580
|
+
break;
|
|
12581
|
+
|
|
12582
|
+
default:
|
|
12583
|
+
break;
|
|
12584
|
+
}
|
|
12585
|
+
} // 开始分析
|
|
12586
|
+
|
|
12587
|
+
|
|
12588
|
+
function startAnalysis() {
|
|
12589
|
+
clearResult();
|
|
12590
|
+
viewModel && viewModel.start();
|
|
12591
|
+
} //清除结果
|
|
12592
|
+
|
|
12593
|
+
|
|
12594
|
+
function clearResult() {
|
|
12595
|
+
viewModel && viewModel.clear();
|
|
12596
|
+
} // 销毁
|
|
12597
|
+
|
|
12598
|
+
|
|
12599
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.onBeforeUnmount)(() => {
|
|
12600
|
+
viewModel && viewModel.destroy();
|
|
12601
|
+
});
|
|
12602
|
+
expose({
|
|
12603
|
+
paramsChanged,
|
|
12604
|
+
startAnalysis,
|
|
12605
|
+
clearResult
|
|
12606
|
+
});
|
|
12607
|
+
return (_ctx, _cache) => {
|
|
12608
|
+
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-row");
|
|
12609
|
+
|
|
12610
|
+
const _component_kq_slider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-slider");
|
|
12611
|
+
|
|
12612
|
+
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-col");
|
|
12613
|
+
|
|
12614
|
+
const _component_kq_input_number = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-input-number");
|
|
12615
|
+
|
|
12616
|
+
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-form-item");
|
|
12617
|
+
|
|
12618
|
+
const _component_kq_color_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-color-picker");
|
|
12619
|
+
|
|
12620
|
+
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-form");
|
|
12621
|
+
|
|
12622
|
+
const _component_kq_collapse_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-collapse-item");
|
|
12623
|
+
|
|
12624
|
+
const _component_kq_collapse = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-collapse");
|
|
12625
|
+
|
|
12626
|
+
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-button");
|
|
12627
|
+
|
|
12628
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("section", AspectAnalysisvue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
12629
|
+
class: "kq3d-aspect-analysis-tip"
|
|
12630
|
+
}, {
|
|
12631
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("p", null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).skylineTips), 1
|
|
12632
|
+
/* TEXT */
|
|
12633
|
+
)]),
|
|
12634
|
+
_: 1
|
|
12635
|
+
/* STABLE */
|
|
12636
|
+
|
|
12637
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_collapse, {
|
|
12638
|
+
"model-value": _ctx.collapseValue
|
|
12639
|
+
}, {
|
|
12640
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_collapse_item, {
|
|
12641
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).analysisSettings,
|
|
12642
|
+
name: "setting"
|
|
12643
|
+
}, {
|
|
12644
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form, {
|
|
12645
|
+
"label-width": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(currentLang) === 'zh' ? '90px' : '120px',
|
|
12646
|
+
"label-position": "left"
|
|
12647
|
+
}, {
|
|
12648
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
12649
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
12650
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).samplingInterval
|
|
12651
|
+
}, {
|
|
12652
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
12653
|
+
style: {
|
|
12654
|
+
"display": "flex"
|
|
12655
|
+
}
|
|
12656
|
+
}, {
|
|
12657
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_col, {
|
|
12658
|
+
span: 16
|
|
12659
|
+
}, {
|
|
12660
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_slider, {
|
|
12661
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval,
|
|
12662
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval = $event),
|
|
12663
|
+
step: 1,
|
|
12664
|
+
min: 100,
|
|
12665
|
+
max: 1000,
|
|
12666
|
+
onInput: _cache[1] || (_cache[1] = $event => paramsChanged('interval'))
|
|
12667
|
+
}, null, 8
|
|
12668
|
+
/* PROPS */
|
|
12669
|
+
, ["modelValue"])]),
|
|
12670
|
+
_: 1
|
|
12671
|
+
/* STABLE */
|
|
12672
|
+
|
|
12673
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_col, {
|
|
12674
|
+
span: 8
|
|
12675
|
+
}, {
|
|
12676
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
12677
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval,
|
|
12678
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).interval = $event),
|
|
12679
|
+
step: 1,
|
|
12680
|
+
min: 100,
|
|
12681
|
+
max: 1000,
|
|
12682
|
+
"controls-position": "right",
|
|
12683
|
+
onInput: _cache[3] || (_cache[3] = $event => paramsChanged('interval'))
|
|
12684
|
+
}, null, 8
|
|
12685
|
+
/* PROPS */
|
|
12686
|
+
, ["modelValue"])]),
|
|
12687
|
+
_: 1
|
|
12688
|
+
/* STABLE */
|
|
12689
|
+
|
|
12690
|
+
})]),
|
|
12691
|
+
_: 1
|
|
12692
|
+
/* STABLE */
|
|
12693
|
+
|
|
12694
|
+
})]),
|
|
12695
|
+
_: 1
|
|
12696
|
+
/* STABLE */
|
|
12697
|
+
|
|
12698
|
+
}, 8
|
|
12699
|
+
/* PROPS */
|
|
12700
|
+
, ["label"])]),
|
|
12701
|
+
_: 1
|
|
12702
|
+
/* STABLE */
|
|
12703
|
+
|
|
12704
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
12705
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
12706
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).arrowWidth
|
|
12707
|
+
}, {
|
|
12708
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
12709
|
+
style: {
|
|
12710
|
+
"display": "flex"
|
|
12711
|
+
}
|
|
12712
|
+
}, {
|
|
12713
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_col, {
|
|
12714
|
+
span: 16
|
|
12715
|
+
}, {
|
|
12716
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_slider, {
|
|
12717
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth,
|
|
12718
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth = $event),
|
|
12719
|
+
step: 1,
|
|
12720
|
+
min: 1,
|
|
12721
|
+
max: 30,
|
|
12722
|
+
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('arrowWidth'))
|
|
12723
|
+
}, null, 8
|
|
12724
|
+
/* PROPS */
|
|
12725
|
+
, ["modelValue"])]),
|
|
12726
|
+
_: 1
|
|
12727
|
+
/* STABLE */
|
|
12728
|
+
|
|
12729
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_col, {
|
|
12730
|
+
span: 8
|
|
12731
|
+
}, {
|
|
12732
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
12733
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth,
|
|
12734
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowWidth = $event),
|
|
12735
|
+
step: 1,
|
|
12736
|
+
min: 1,
|
|
12737
|
+
max: 30,
|
|
12738
|
+
"controls-position": "right",
|
|
12739
|
+
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('arrowWidth'))
|
|
12740
|
+
}, null, 8
|
|
12741
|
+
/* PROPS */
|
|
12742
|
+
, ["modelValue"])]),
|
|
12743
|
+
_: 1
|
|
12744
|
+
/* STABLE */
|
|
12745
|
+
|
|
12746
|
+
})]),
|
|
12747
|
+
_: 1
|
|
12748
|
+
/* STABLE */
|
|
12749
|
+
|
|
12750
|
+
})]),
|
|
12751
|
+
_: 1
|
|
12752
|
+
/* STABLE */
|
|
12753
|
+
|
|
12754
|
+
}, 8
|
|
12755
|
+
/* PROPS */
|
|
12756
|
+
, ["label"])]),
|
|
12757
|
+
_: 1
|
|
12758
|
+
/* STABLE */
|
|
12759
|
+
|
|
12760
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, null, {
|
|
12761
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_form_item, {
|
|
12762
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).color
|
|
12763
|
+
}, {
|
|
12764
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_color_picker, {
|
|
12765
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowColor,
|
|
12766
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).arrowColor = $event),
|
|
12767
|
+
onChange: _cache[9] || (_cache[9] = $event => paramsChanged('slopeColorText'))
|
|
12768
|
+
}, null, 8
|
|
12769
|
+
/* PROPS */
|
|
12770
|
+
, ["modelValue"])]),
|
|
12771
|
+
_: 1
|
|
12772
|
+
/* STABLE */
|
|
12773
|
+
|
|
12774
|
+
}, 8
|
|
12775
|
+
/* PROPS */
|
|
12776
|
+
, ["label"])]),
|
|
12777
|
+
_: 1
|
|
12778
|
+
/* STABLE */
|
|
12779
|
+
|
|
12780
|
+
})])]),
|
|
12781
|
+
_: 1
|
|
12782
|
+
/* STABLE */
|
|
12783
|
+
|
|
12784
|
+
}, 8
|
|
12785
|
+
/* PROPS */
|
|
12786
|
+
, ["label-width"])]),
|
|
12787
|
+
_: 1
|
|
12788
|
+
/* STABLE */
|
|
12789
|
+
|
|
12790
|
+
}, 8
|
|
12791
|
+
/* PROPS */
|
|
12792
|
+
, ["title"])]),
|
|
12793
|
+
_: 1
|
|
12794
|
+
/* STABLE */
|
|
12795
|
+
|
|
12796
|
+
}, 8
|
|
12797
|
+
/* PROPS */
|
|
12798
|
+
, ["model-value"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AspectAnalysisvue_type_script_setup_true_lang_js_hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
12799
|
+
onClick: _cache[10] || (_cache[10] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => startAnalysis(), ["stop"])),
|
|
12800
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).startAnalysis,
|
|
12801
|
+
type: "primary"
|
|
12802
|
+
}, {
|
|
12803
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).startAnalysis), 1
|
|
12804
|
+
/* TEXT */
|
|
12805
|
+
)]),
|
|
12806
|
+
_: 1
|
|
12807
|
+
/* STABLE */
|
|
12808
|
+
|
|
12809
|
+
}, 8
|
|
12810
|
+
/* PROPS */
|
|
12811
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
12812
|
+
onClick: _cache[11] || (_cache[11] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => clearResult(), ["stop"])),
|
|
12813
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).clearResult
|
|
12814
|
+
}, {
|
|
12815
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).clearResult), 1
|
|
12816
|
+
/* TEXT */
|
|
12817
|
+
)]),
|
|
12818
|
+
_: 1
|
|
12819
|
+
/* STABLE */
|
|
12820
|
+
|
|
12821
|
+
}, 8
|
|
12822
|
+
/* PROPS */
|
|
12823
|
+
, ["title"])])]);
|
|
12824
|
+
};
|
|
12825
|
+
}
|
|
12826
|
+
|
|
12827
|
+
}));
|
|
12828
|
+
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/AspectAnalysis.vue?vue&type=script&setup=true&lang=js
|
|
12829
|
+
|
|
12830
|
+
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/AspectAnalysis.vue
|
|
12831
|
+
|
|
12832
|
+
|
|
12833
|
+
|
|
12834
|
+
const AspectAnalysis_exports_ = AspectAnalysisvue_type_script_setup_true_lang_js;
|
|
12835
|
+
|
|
12836
|
+
/* harmony default export */ var AspectAnalysis = (AspectAnalysis_exports_);
|
|
12837
|
+
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/index.js
|
|
12838
|
+
|
|
12839
|
+
|
|
12840
|
+
|
|
12841
|
+
|
|
12842
|
+
AspectAnalysis.install = (Vue, opts) => {
|
|
12843
|
+
init_js_default()(Vue, opts);
|
|
12844
|
+
Vue.component(AspectAnalysis.name, AspectAnalysis);
|
|
12845
|
+
};
|
|
12846
|
+
|
|
12847
|
+
|
|
12441
12848
|
;// CONCATENATED MODULE: ./src/webgl/isolineanalysis/IsolineAnalysisViewModel.js
|
|
12442
12849
|
|
|
12443
12850
|
//等值线分析逻辑类
|
|
@@ -17288,31 +17695,28 @@ class AddDataViewModel {
|
|
|
17288
17695
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/adddata/AddData.vue?vue&type=script&setup=true&lang=js
|
|
17289
17696
|
|
|
17290
17697
|
const AddDatavue_type_script_setup_true_lang_js_hoisted_1 = {
|
|
17291
|
-
class: "kq-add-data"
|
|
17292
|
-
};
|
|
17293
|
-
const AddDatavue_type_script_setup_true_lang_js_hoisted_2 = {
|
|
17294
17698
|
class: "kq-add-data-desc"
|
|
17295
17699
|
};
|
|
17296
|
-
const
|
|
17700
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_2 = {
|
|
17297
17701
|
class: "kq-add-data-upload_text"
|
|
17298
17702
|
};
|
|
17299
|
-
const
|
|
17703
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_3 = {
|
|
17300
17704
|
class: "kq-add-data-filelist"
|
|
17301
17705
|
};
|
|
17302
|
-
const
|
|
17706
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_4 = {
|
|
17303
17707
|
class: "kq-add-data-file"
|
|
17304
17708
|
};
|
|
17305
|
-
const
|
|
17306
|
-
const
|
|
17709
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_5 = ["title"];
|
|
17710
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_6 = {
|
|
17307
17711
|
class: "kq-add-data-footer"
|
|
17308
17712
|
};
|
|
17309
|
-
const
|
|
17713
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_7 = {
|
|
17310
17714
|
class: "kq-add-data-tip"
|
|
17311
17715
|
};
|
|
17312
|
-
const
|
|
17716
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_8 = {
|
|
17313
17717
|
class: "kq-add-data-tip"
|
|
17314
17718
|
};
|
|
17315
|
-
const
|
|
17719
|
+
const AddDatavue_type_script_setup_true_lang_js_hoisted_9 = {
|
|
17316
17720
|
class: "kq-add-data-footer"
|
|
17317
17721
|
};
|
|
17318
17722
|
|
|
@@ -17324,7 +17728,13 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17324
17728
|
name: "Kq3dAddData"
|
|
17325
17729
|
};
|
|
17326
17730
|
/* harmony default export */ var AddDatavue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(AddDatavue_type_script_setup_true_lang_js_default_, {
|
|
17327
|
-
props: {
|
|
17731
|
+
props: {
|
|
17732
|
+
// 是否显示阴影
|
|
17733
|
+
showShadow: {
|
|
17734
|
+
type: Boolean,
|
|
17735
|
+
default: false
|
|
17736
|
+
}
|
|
17737
|
+
},
|
|
17328
17738
|
|
|
17329
17739
|
setup(__props, {
|
|
17330
17740
|
expose
|
|
@@ -17553,7 +17963,11 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17553
17963
|
|
|
17554
17964
|
const _component_kq_tabs = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.resolveComponent)("kq-tabs");
|
|
17555
17965
|
|
|
17556
|
-
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("section",
|
|
17966
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)("section", {
|
|
17967
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.normalizeClass)(["kq-add-data", {
|
|
17968
|
+
'kq-shadow': __props.showShadow
|
|
17969
|
+
}])
|
|
17970
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_tabs, {
|
|
17557
17971
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(activeName),
|
|
17558
17972
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.isRef)(activeName) ? activeName.value = $event : activeName = $event),
|
|
17559
17973
|
onTabChange: handleChange
|
|
@@ -17562,7 +17976,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17562
17976
|
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).uploadData,
|
|
17563
17977
|
name: "upload"
|
|
17564
17978
|
}, {
|
|
17565
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div",
|
|
17979
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AddDatavue_type_script_setup_true_lang_js_hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_row, {
|
|
17566
17980
|
class: ""
|
|
17567
17981
|
}, {
|
|
17568
17982
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).fileFormatDescription), 1
|
|
@@ -17592,7 +18006,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17592
18006
|
ref_key: "upload_ref",
|
|
17593
18007
|
ref: upload_ref
|
|
17594
18008
|
}, {
|
|
17595
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div",
|
|
18009
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AddDatavue_type_script_setup_true_lang_js_hoisted_2, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).dragFileToArea), 1
|
|
17596
18010
|
/* TEXT */
|
|
17597
18011
|
)]),
|
|
17598
18012
|
_: 1
|
|
@@ -17600,7 +18014,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17600
18014
|
|
|
17601
18015
|
}, 8
|
|
17602
18016
|
/* PROPS */
|
|
17603
|
-
, ["file-list"]), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(fileList).length === 0]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div",
|
|
18017
|
+
, ["file-list"]), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(fileList).length === 0]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AddDatavue_type_script_setup_true_lang_js_hoisted_3, [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(operatorArray), (rowItem, i) => {
|
|
17604
18018
|
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createBlock)(_component_kq_row, {
|
|
17605
18019
|
key: i,
|
|
17606
18020
|
gutter: 20
|
|
@@ -17610,7 +18024,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17610
18024
|
span: 8,
|
|
17611
18025
|
key: j
|
|
17612
18026
|
}, {
|
|
17613
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div",
|
|
18027
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AddDatavue_type_script_setup_true_lang_js_hoisted_4, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_icon, {
|
|
17614
18028
|
class: "kq-add-data-doc"
|
|
17615
18029
|
}, {
|
|
17616
18030
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(icons_vue_namespaceObject.Document))]),
|
|
@@ -17621,7 +18035,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17621
18035
|
title: file.name
|
|
17622
18036
|
}, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)(file.name), 9
|
|
17623
18037
|
/* TEXT, PROPS */
|
|
17624
|
-
,
|
|
18038
|
+
, AddDatavue_type_script_setup_true_lang_js_hoisted_5), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_icon, {
|
|
17625
18039
|
class: "kq-add-data-close",
|
|
17626
18040
|
onClick: $event => removeFile(file)
|
|
17627
18041
|
}, {
|
|
@@ -17651,7 +18065,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17651
18065
|
/* KEYED_FRAGMENT */
|
|
17652
18066
|
))], 512
|
|
17653
18067
|
/* NEED_PATCH */
|
|
17654
|
-
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(fileList).length > 0]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div",
|
|
18068
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(fileList).length > 0]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AddDatavue_type_script_setup_true_lang_js_hoisted_6, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_upload, {
|
|
17655
18069
|
action: "",
|
|
17656
18070
|
"show-file-list": false,
|
|
17657
18071
|
"auto-upload": false,
|
|
@@ -17744,7 +18158,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17744
18158
|
|
|
17745
18159
|
}, 8
|
|
17746
18160
|
/* PROPS */
|
|
17747
|
-
, ["modelValue"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("span",
|
|
18161
|
+
, ["modelValue"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("span", AddDatavue_type_script_setup_true_lang_js_hoisted_7, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(dataSourceType).description), 1
|
|
17748
18162
|
/* TEXT */
|
|
17749
18163
|
)]),
|
|
17750
18164
|
_: 1
|
|
@@ -17766,7 +18180,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17766
18180
|
placeholder: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(dataSourceType).urlPlaceholder
|
|
17767
18181
|
}, null, 8
|
|
17768
18182
|
/* PROPS */
|
|
17769
|
-
, ["modelValue", "placeholder"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("span",
|
|
18183
|
+
, ["modelValue", "placeholder"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("span", AddDatavue_type_script_setup_true_lang_js_hoisted_8, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(dataSourceType).urlPlaceholder), 1
|
|
17770
18184
|
/* TEXT */
|
|
17771
18185
|
)]),
|
|
17772
18186
|
_: 1
|
|
@@ -17802,7 +18216,7 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17802
18216
|
_: 1
|
|
17803
18217
|
/* STABLE */
|
|
17804
18218
|
|
|
17805
|
-
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div",
|
|
18219
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createElementVNode)("div", AddDatavue_type_script_setup_true_lang_js_hoisted_9, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_button, {
|
|
17806
18220
|
onClick: _cache[6] || (_cache[6] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withModifiers)($event => loadURL(), ["stop"])),
|
|
17807
18221
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(language).loadFiles,
|
|
17808
18222
|
type: "primary"
|
|
@@ -17839,7 +18253,9 @@ const AddDatavue_type_script_setup_true_lang_js_default_ = {
|
|
|
17839
18253
|
|
|
17840
18254
|
}, 8
|
|
17841
18255
|
/* PROPS */
|
|
17842
|
-
, ["modelValue"])]
|
|
18256
|
+
, ["modelValue"])], 2
|
|
18257
|
+
/* CLASS */
|
|
18258
|
+
);
|
|
17843
18259
|
};
|
|
17844
18260
|
}
|
|
17845
18261
|
|
|
@@ -21387,6 +21803,8 @@ Underground.install = (Vue, opts) => {
|
|
|
21387
21803
|
|
|
21388
21804
|
|
|
21389
21805
|
|
|
21806
|
+
|
|
21807
|
+
|
|
21390
21808
|
|
|
21391
21809
|
|
|
21392
21810
|
|
|
@@ -21406,6 +21824,7 @@ const webglComponents = {
|
|
|
21406
21824
|
Kq3dExcavateFillAnalysis: ExcavateFillAnalysis,
|
|
21407
21825
|
Kq3dFloodAnalysis: FloodAnalysis,
|
|
21408
21826
|
Kq3dSlopeAnalysis: SlopeAnalysis,
|
|
21827
|
+
Kq3dAspectAnalysis: AspectAnalysis,
|
|
21409
21828
|
Kq3dIsolineAnalysis: IsolineAnalysis,
|
|
21410
21829
|
Kq3dBoxClip: BoxClip,
|
|
21411
21830
|
Kq3dPlaneClip: PlaneClip,
|