@kq_npm/client3d_webgl_vue 3.2.5-beta → 3.2.7-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 +122 -91
- package/boxclip/index.js +182 -158
- package/clientPrint/index.js +2316 -0
- package/clientPrint/style/clientPrint.css +1 -0
- package/clientPrint/style/index.js +3 -0
- package/excavatefillanalysis/index.js +149 -118
- package/floodanalysis/index.js +48 -5
- package/gpuspatialquery/index.js +188 -164
- package/index.js +2326 -93
- package/isolineanalysis/index.js +34 -1
- package/modelselect/index.js +143 -119
- package/modelselect/style/modelselect.css +1 -1
- package/package.json +1 -1
- package/planeclip/index.js +182 -158
- package/scenceview/index.js +2599 -377
- package/shadowanalysis/index.js +185 -161
- package/skylineanalysis/index.js +185 -158
- package/slopeanalysis/index.js +56 -16
- package/style.css +1 -1
- package/terrainoperation/index.js +195 -164
package/scenceview/index.js
CHANGED
|
@@ -1763,24 +1763,38 @@ AddData.install = (Vue, opts) => {
|
|
|
1763
1763
|
|
|
1764
1764
|
/***/ }),
|
|
1765
1765
|
|
|
1766
|
-
/***/
|
|
1766
|
+
/***/ 6776:
|
|
1767
1767
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1768
1768
|
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1769
|
+
|
|
1770
|
+
// EXPORTS
|
|
1771
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
1772
|
+
"default": function() { return /* reexport */ AspectAnalysis; }
|
|
1773
|
+
});
|
|
1774
|
+
|
|
1775
|
+
// UNUSED EXPORTS: AspectAnalysisViewModel
|
|
1776
|
+
|
|
1777
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
1778
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
1779
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
1780
|
+
var gis_utils_ = __webpack_require__(826);
|
|
1781
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
1782
|
+
var defineProperty = __webpack_require__(8270);
|
|
1783
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
1784
|
+
var message = __webpack_require__(909);
|
|
1785
|
+
;// CONCATENATED MODULE: ./src/webgl/aspectanalysis/AspectAnalysisViewModel.js
|
|
1773
1786
|
|
|
1774
1787
|
|
|
1775
1788
|
/**
|
|
1776
1789
|
* 坡向逻辑类
|
|
1777
1790
|
**/
|
|
1791
|
+
|
|
1778
1792
|
class AspectAnalysisViewModel {
|
|
1779
1793
|
// 坡向三维对象
|
|
1780
1794
|
constructor(scenceView, aspect) {
|
|
1781
|
-
(0,
|
|
1795
|
+
(0,defineProperty/* default */.Z)(this, "_aspectAnalysis", null);
|
|
1782
1796
|
|
|
1783
|
-
(0,
|
|
1797
|
+
(0,defineProperty/* default */.Z)(this, "_globaOptions", {
|
|
1784
1798
|
//全局参数
|
|
1785
1799
|
viewer: null,
|
|
1786
1800
|
_drawManager: null
|
|
@@ -1815,15 +1829,25 @@ class AspectAnalysisViewModel {
|
|
|
1815
1829
|
start() {
|
|
1816
1830
|
// 判断是否添加了地形
|
|
1817
1831
|
if (this._globaOptions.viewer.terrainProvider.availability) {
|
|
1818
|
-
if (this._globaOptions.
|
|
1819
|
-
this.
|
|
1832
|
+
if (this._globaOptions.viewer.terrainProvider instanceof Cesium.CesiumTerrainProvider) {
|
|
1833
|
+
if (this._globaOptions._drawManager) {
|
|
1834
|
+
this.clear();
|
|
1820
1835
|
|
|
1821
|
-
|
|
1822
|
-
|
|
1836
|
+
this._globaOptions._drawManager.startDraw("polygon", {
|
|
1837
|
+
clampToGround: true
|
|
1838
|
+
});
|
|
1839
|
+
}
|
|
1840
|
+
} else {
|
|
1841
|
+
(0,message/* default */.Z)({
|
|
1842
|
+
message: "只支持STK类型的地形分析!",
|
|
1843
|
+
type: "warning"
|
|
1823
1844
|
});
|
|
1824
1845
|
}
|
|
1825
1846
|
} else {
|
|
1826
|
-
|
|
1847
|
+
(0,message/* default */.Z)({
|
|
1848
|
+
message: "请加载地形后分析!",
|
|
1849
|
+
type: "warning"
|
|
1850
|
+
});
|
|
1827
1851
|
}
|
|
1828
1852
|
} // 设置采样间隔
|
|
1829
1853
|
|
|
@@ -1858,26 +1882,6 @@ class AspectAnalysisViewModel {
|
|
|
1858
1882
|
}
|
|
1859
1883
|
|
|
1860
1884
|
}
|
|
1861
|
-
|
|
1862
|
-
/***/ }),
|
|
1863
|
-
|
|
1864
|
-
/***/ 468:
|
|
1865
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
// EXPORTS
|
|
1869
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
1870
|
-
"default": function() { return /* reexport */ AspectAnalysis; }
|
|
1871
|
-
});
|
|
1872
|
-
|
|
1873
|
-
// UNUSED EXPORTS: AspectAnalysisViewModel
|
|
1874
|
-
|
|
1875
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
1876
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
1877
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
1878
|
-
var gis_utils_ = __webpack_require__(826);
|
|
1879
|
-
// EXTERNAL MODULE: ./src/webgl/aspectanalysis/AspectAnalysisViewModel.js
|
|
1880
|
-
var AspectAnalysisViewModel = __webpack_require__(8132);
|
|
1881
1885
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
1882
1886
|
var client_icons_vue_ = __webpack_require__(348);
|
|
1883
1887
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -1988,7 +1992,7 @@ const __default__ = {
|
|
|
1988
1992
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
1989
1993
|
if (scenceView) {
|
|
1990
1994
|
language.value = scenceView._language;
|
|
1991
|
-
viewModel = new AspectAnalysisViewModel
|
|
1995
|
+
viewModel = new AspectAnalysisViewModel(scenceView, {
|
|
1992
1996
|
interval: formItem.interval,
|
|
1993
1997
|
// 采样间隔
|
|
1994
1998
|
arrowWidth: formItem.arrowWidth,
|
|
@@ -2706,15 +2710,29 @@ BaseterrainGallery.install = (Vue, opts) => {
|
|
|
2706
2710
|
|
|
2707
2711
|
/***/ }),
|
|
2708
2712
|
|
|
2709
|
-
/***/
|
|
2713
|
+
/***/ 4510:
|
|
2710
2714
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2711
2715
|
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
+
|
|
2717
|
+
// EXPORTS
|
|
2718
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
2719
|
+
"default": function() { return /* reexport */ BoxClip; }
|
|
2720
|
+
});
|
|
2721
|
+
|
|
2722
|
+
// UNUSED EXPORTS: BoxClipViewModel
|
|
2723
|
+
|
|
2724
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
2725
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
2726
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
2727
|
+
var gis_utils_ = __webpack_require__(826);
|
|
2728
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
2729
|
+
var defineProperty = __webpack_require__(8270);
|
|
2730
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
2731
|
+
var message = __webpack_require__(909);
|
|
2732
|
+
;// CONCATENATED MODULE: ./src/webgl/boxclip/BoxClipViewModel.js
|
|
2716
2733
|
|
|
2717
2734
|
//Box裁剪逻辑类
|
|
2735
|
+
|
|
2718
2736
|
class BoxClipViewModel {
|
|
2719
2737
|
//三维viewer对象
|
|
2720
2738
|
//Box裁剪存储参数对象
|
|
@@ -2722,11 +2740,11 @@ class BoxClipViewModel {
|
|
|
2722
2740
|
//绘制管理对象
|
|
2723
2741
|
//绘制完成监听事件
|
|
2724
2742
|
constructor(scenceView, options) {
|
|
2725
|
-
(0,
|
|
2743
|
+
(0,defineProperty/* default */.Z)(this, "_viewer", null);
|
|
2726
2744
|
|
|
2727
|
-
(0,
|
|
2745
|
+
(0,defineProperty/* default */.Z)(this, "_options", {});
|
|
2728
2746
|
|
|
2729
|
-
(0,
|
|
2747
|
+
(0,defineProperty/* default */.Z)(this, "_defaultOptions", {
|
|
2730
2748
|
//默认参数对象
|
|
2731
2749
|
clipTyp: 1,
|
|
2732
2750
|
boxColor: Cesium.Color.fromCssColorString("#316882").withAlpha(0.4),
|
|
@@ -2747,11 +2765,11 @@ class BoxClipViewModel {
|
|
|
2747
2765
|
paddingStrokeSpace: 5.0
|
|
2748
2766
|
});
|
|
2749
2767
|
|
|
2750
|
-
(0,
|
|
2768
|
+
(0,defineProperty/* default */.Z)(this, "_boxclipAnalysis", null);
|
|
2751
2769
|
|
|
2752
|
-
(0,
|
|
2770
|
+
(0,defineProperty/* default */.Z)(this, "_drawManager", null);
|
|
2753
2771
|
|
|
2754
|
-
(0,
|
|
2772
|
+
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
2755
2773
|
|
|
2756
2774
|
this._options = Object.assign({}, options, this._defaultOptions);
|
|
2757
2775
|
this._viewer = scenceView._viewer; // this._viewer.enabledFXAA = true;
|
|
@@ -2813,7 +2831,10 @@ class BoxClipViewModel {
|
|
|
2813
2831
|
image: null
|
|
2814
2832
|
});
|
|
2815
2833
|
} else {
|
|
2816
|
-
|
|
2834
|
+
(0,message/* default */.Z)({
|
|
2835
|
+
message: "请添加模型后裁剪!",
|
|
2836
|
+
type: "warning"
|
|
2837
|
+
});
|
|
2817
2838
|
}
|
|
2818
2839
|
} //清除全部
|
|
2819
2840
|
|
|
@@ -2905,26 +2926,6 @@ class BoxClipViewModel {
|
|
|
2905
2926
|
}
|
|
2906
2927
|
|
|
2907
2928
|
}
|
|
2908
|
-
|
|
2909
|
-
/***/ }),
|
|
2910
|
-
|
|
2911
|
-
/***/ 9985:
|
|
2912
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
// EXPORTS
|
|
2916
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
2917
|
-
"default": function() { return /* reexport */ BoxClip; }
|
|
2918
|
-
});
|
|
2919
|
-
|
|
2920
|
-
// UNUSED EXPORTS: BoxClipViewModel
|
|
2921
|
-
|
|
2922
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
2923
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
2924
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
2925
|
-
var gis_utils_ = __webpack_require__(826);
|
|
2926
|
-
// EXTERNAL MODULE: ./src/webgl/boxclip/BoxClipViewModel.js
|
|
2927
|
-
var BoxClipViewModel = __webpack_require__(219);
|
|
2928
2929
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
2929
2930
|
var client_icons_vue_ = __webpack_require__(348);
|
|
2930
2931
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -3052,7 +3053,7 @@ const __default__ = {
|
|
|
3052
3053
|
axisZ: formItem.clipHeight,
|
|
3053
3054
|
angle: formItem.clipRotation
|
|
3054
3055
|
};
|
|
3055
|
-
viewModel = new BoxClipViewModel
|
|
3056
|
+
viewModel = new BoxClipViewModel(scenceView, options);
|
|
3056
3057
|
}
|
|
3057
3058
|
});
|
|
3058
3059
|
setTimeout(() => {
|
|
@@ -3755,7 +3756,1952 @@ const __default__ = {
|
|
|
3755
3756
|
|
|
3756
3757
|
}, 8
|
|
3757
3758
|
/* PROPS */
|
|
3758
|
-
, ["label"])]),
|
|
3759
|
+
, ["label"])]),
|
|
3760
|
+
_: 1
|
|
3761
|
+
/* STABLE */
|
|
3762
|
+
|
|
3763
|
+
})]),
|
|
3764
|
+
_: 1
|
|
3765
|
+
/* STABLE */
|
|
3766
|
+
|
|
3767
|
+
}, 8
|
|
3768
|
+
/* PROPS */
|
|
3769
|
+
, ["label-width"])]),
|
|
3770
|
+
_: 1
|
|
3771
|
+
/* STABLE */
|
|
3772
|
+
|
|
3773
|
+
}, 8
|
|
3774
|
+
/* PROPS */
|
|
3775
|
+
, ["title"])]),
|
|
3776
|
+
_: 1
|
|
3777
|
+
/* STABLE */
|
|
3778
|
+
|
|
3779
|
+
}, 8
|
|
3780
|
+
/* PROPS */
|
|
3781
|
+
, ["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, {
|
|
3782
|
+
onClick: _cache[38] || (_cache[38] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clip(), ["stop"])),
|
|
3783
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clip,
|
|
3784
|
+
type: "primary"
|
|
3785
|
+
}, {
|
|
3786
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clip), 1
|
|
3787
|
+
/* TEXT */
|
|
3788
|
+
)]),
|
|
3789
|
+
_: 1
|
|
3790
|
+
/* STABLE */
|
|
3791
|
+
|
|
3792
|
+
}, 8
|
|
3793
|
+
/* PROPS */
|
|
3794
|
+
, ["title"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
3795
|
+
onClick: _cache[39] || (_cache[39] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => clearResult(), ["stop"])),
|
|
3796
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clear
|
|
3797
|
+
}, {
|
|
3798
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).clear), 1
|
|
3799
|
+
/* TEXT */
|
|
3800
|
+
)]),
|
|
3801
|
+
_: 1
|
|
3802
|
+
/* STABLE */
|
|
3803
|
+
|
|
3804
|
+
}, 8
|
|
3805
|
+
/* PROPS */
|
|
3806
|
+
, ["title"])])])], 2
|
|
3807
|
+
/* CLASS */
|
|
3808
|
+
);
|
|
3809
|
+
};
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
}));
|
|
3813
|
+
;// CONCATENATED MODULE: ./src/webgl/boxclip/BoxClip.vue?vue&type=script&setup=true&lang=js
|
|
3814
|
+
|
|
3815
|
+
;// CONCATENATED MODULE: ./src/webgl/boxclip/BoxClip.vue
|
|
3816
|
+
|
|
3817
|
+
|
|
3818
|
+
|
|
3819
|
+
const __exports__ = BoxClipvue_type_script_setup_true_lang_js;
|
|
3820
|
+
|
|
3821
|
+
/* harmony default export */ var BoxClip = (__exports__);
|
|
3822
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
3823
|
+
var init_js_ = __webpack_require__(5406);
|
|
3824
|
+
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
3825
|
+
;// CONCATENATED MODULE: ./src/webgl/boxclip/index.js
|
|
3826
|
+
|
|
3827
|
+
|
|
3828
|
+
|
|
3829
|
+
|
|
3830
|
+
BoxClip.install = (Vue, opts) => {
|
|
3831
|
+
init_js_default()(Vue, opts);
|
|
3832
|
+
Vue.component(BoxClip.name, BoxClip);
|
|
3833
|
+
};
|
|
3834
|
+
|
|
3835
|
+
|
|
3836
|
+
|
|
3837
|
+
/***/ }),
|
|
3838
|
+
|
|
3839
|
+
/***/ 9821:
|
|
3840
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3841
|
+
|
|
3842
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3843
|
+
/* harmony export */ "Z": function() { return /* binding */ ClientPrintViewModel; }
|
|
3844
|
+
/* harmony export */ });
|
|
3845
|
+
/* harmony import */ var _Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8270);
|
|
3846
|
+
|
|
3847
|
+
|
|
3848
|
+
/**
|
|
3849
|
+
* @class ClientPrintViewModel
|
|
3850
|
+
* @classdesc 客户端打印
|
|
3851
|
+
*/
|
|
3852
|
+
class ClientPrintViewModel {
|
|
3853
|
+
constructor(scenceView) {
|
|
3854
|
+
(0,_Users_zpc_Documents_KQGEOSpace_KQGISClientForVue_node_modules_babel_runtime_helpers_esm_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__/* ["default"] */ .Z)(this, "_viewer", null);
|
|
3855
|
+
|
|
3856
|
+
this._viewer = scenceView._viewer;
|
|
3857
|
+
}
|
|
3858
|
+
/**
|
|
3859
|
+
* 改变状态栏方法
|
|
3860
|
+
*/
|
|
3861
|
+
|
|
3862
|
+
|
|
3863
|
+
changStatusBar(val) {
|
|
3864
|
+
this._viewer.statusBar.show = val;
|
|
3865
|
+
}
|
|
3866
|
+
/**
|
|
3867
|
+
* 销毁执行方法。
|
|
3868
|
+
*/
|
|
3869
|
+
|
|
3870
|
+
|
|
3871
|
+
destroy() {}
|
|
3872
|
+
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
/***/ }),
|
|
3876
|
+
|
|
3877
|
+
/***/ 2935:
|
|
3878
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3879
|
+
|
|
3880
|
+
|
|
3881
|
+
// EXPORTS
|
|
3882
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
3883
|
+
"default": function() { return /* reexport */ ClientPrint; }
|
|
3884
|
+
});
|
|
3885
|
+
|
|
3886
|
+
// UNUSED EXPORTS: ClientPrint3dViewModel
|
|
3887
|
+
|
|
3888
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.includes.js"
|
|
3889
|
+
var es_array_includes_js_ = __webpack_require__(3600);
|
|
3890
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
3891
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
3892
|
+
// EXTERNAL MODULE: ./src/webgl/clientPrint/ClientPrintViewModel.js
|
|
3893
|
+
var ClientPrintViewModel = __webpack_require__(9821);
|
|
3894
|
+
;// CONCATENATED MODULE: external "html2canvas"
|
|
3895
|
+
var external_html2canvas_namespaceObject = require("html2canvas");
|
|
3896
|
+
var external_html2canvas_default = /*#__PURE__*/__webpack_require__.n(external_html2canvas_namespaceObject);
|
|
3897
|
+
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
3898
|
+
var icons_vue_ = __webpack_require__(8422);
|
|
3899
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
3900
|
+
var const_image_ = __webpack_require__(9702);
|
|
3901
|
+
;// CONCATENATED MODULE: external "vue3-print-nb"
|
|
3902
|
+
var external_vue3_print_nb_namespaceObject = require("vue3-print-nb");
|
|
3903
|
+
var external_vue3_print_nb_default = /*#__PURE__*/__webpack_require__.n(external_vue3_print_nb_namespaceObject);
|
|
3904
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_types/global-event"
|
|
3905
|
+
var global_event_ = __webpack_require__(1088);
|
|
3906
|
+
var global_event_default = /*#__PURE__*/__webpack_require__.n(global_event_);
|
|
3907
|
+
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/clientPrint/ClientPrint.vue?vue&type=script&setup=true&lang=js
|
|
3908
|
+
|
|
3909
|
+
|
|
3910
|
+
const _hoisted_1 = {
|
|
3911
|
+
class: "kq3d-client-print-wrapper",
|
|
3912
|
+
ref: "clientRef"
|
|
3913
|
+
};
|
|
3914
|
+
const _hoisted_2 = {
|
|
3915
|
+
class: "setting-box-btn"
|
|
3916
|
+
};
|
|
3917
|
+
|
|
3918
|
+
const _hoisted_3 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", {
|
|
3919
|
+
class: "title"
|
|
3920
|
+
}, "图层选择", -1
|
|
3921
|
+
/* HOISTED */
|
|
3922
|
+
);
|
|
3923
|
+
|
|
3924
|
+
const _hoisted_4 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", {
|
|
3925
|
+
class: "title"
|
|
3926
|
+
}, "标题设置", -1
|
|
3927
|
+
/* HOISTED */
|
|
3928
|
+
);
|
|
3929
|
+
|
|
3930
|
+
const _hoisted_5 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", {
|
|
3931
|
+
class: "title"
|
|
3932
|
+
}, "添加文本", -1
|
|
3933
|
+
/* HOISTED */
|
|
3934
|
+
);
|
|
3935
|
+
|
|
3936
|
+
const _hoisted_6 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" 页面设置 ");
|
|
3937
|
+
|
|
3938
|
+
const _hoisted_7 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("图例");
|
|
3939
|
+
|
|
3940
|
+
const _hoisted_8 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("指北针");
|
|
3941
|
+
|
|
3942
|
+
const _hoisted_9 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("状态栏");
|
|
3943
|
+
|
|
3944
|
+
const _hoisted_10 = {
|
|
3945
|
+
class: "select-content-inner"
|
|
3946
|
+
};
|
|
3947
|
+
|
|
3948
|
+
const _hoisted_11 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A2");
|
|
3949
|
+
|
|
3950
|
+
const _hoisted_12 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A3");
|
|
3951
|
+
|
|
3952
|
+
const _hoisted_13 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A4");
|
|
3953
|
+
|
|
3954
|
+
const _hoisted_14 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A5");
|
|
3955
|
+
|
|
3956
|
+
const _hoisted_15 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("A6");
|
|
3957
|
+
|
|
3958
|
+
const _hoisted_16 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("纵向");
|
|
3959
|
+
|
|
3960
|
+
const _hoisted_17 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("横向");
|
|
3961
|
+
|
|
3962
|
+
const _hoisted_18 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("png");
|
|
3963
|
+
|
|
3964
|
+
const _hoisted_19 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("jpg");
|
|
3965
|
+
|
|
3966
|
+
const _hoisted_20 = {
|
|
3967
|
+
style: {
|
|
3968
|
+
"text-align": "right"
|
|
3969
|
+
}
|
|
3970
|
+
};
|
|
3971
|
+
|
|
3972
|
+
const _hoisted_21 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("保存为图片");
|
|
3973
|
+
|
|
3974
|
+
const _hoisted_22 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" 发送到打印机 ");
|
|
3975
|
+
|
|
3976
|
+
const _hoisted_23 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", {
|
|
3977
|
+
class: "title"
|
|
3978
|
+
}, "图层选择", -1
|
|
3979
|
+
/* HOISTED */
|
|
3980
|
+
);
|
|
3981
|
+
|
|
3982
|
+
const _hoisted_24 = {
|
|
3983
|
+
class: "select-layer-content"
|
|
3984
|
+
};
|
|
3985
|
+
|
|
3986
|
+
const _hoisted_25 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", {
|
|
3987
|
+
class: "title"
|
|
3988
|
+
}, "标题设置", -1
|
|
3989
|
+
/* HOISTED */
|
|
3990
|
+
);
|
|
3991
|
+
|
|
3992
|
+
const _hoisted_26 = {
|
|
3993
|
+
class: "select-content-inner"
|
|
3994
|
+
};
|
|
3995
|
+
|
|
3996
|
+
const _hoisted_27 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ");
|
|
3997
|
+
|
|
3998
|
+
const _hoisted_28 = {
|
|
3999
|
+
style: {
|
|
4000
|
+
"float": "right"
|
|
4001
|
+
}
|
|
4002
|
+
};
|
|
4003
|
+
|
|
4004
|
+
const _hoisted_29 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("背景阴影");
|
|
4005
|
+
|
|
4006
|
+
const _hoisted_30 = {
|
|
4007
|
+
class: "clientprint-title"
|
|
4008
|
+
};
|
|
4009
|
+
|
|
4010
|
+
const _hoisted_31 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("显示标题");
|
|
4011
|
+
|
|
4012
|
+
const _hoisted_32 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("h4", {
|
|
4013
|
+
class: "title"
|
|
4014
|
+
}, "添加文本", -1
|
|
4015
|
+
/* HOISTED */
|
|
4016
|
+
);
|
|
4017
|
+
|
|
4018
|
+
const _hoisted_33 = {
|
|
4019
|
+
class: "select-content-inner"
|
|
4020
|
+
};
|
|
4021
|
+
|
|
4022
|
+
const _hoisted_34 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)(" ");
|
|
4023
|
+
|
|
4024
|
+
const _hoisted_35 = {
|
|
4025
|
+
class: "btn"
|
|
4026
|
+
};
|
|
4027
|
+
|
|
4028
|
+
const _hoisted_36 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("增加");
|
|
4029
|
+
|
|
4030
|
+
const _hoisted_37 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)("清空");
|
|
4031
|
+
|
|
4032
|
+
const _hoisted_38 = {
|
|
4033
|
+
class: "show-right-box-btn"
|
|
4034
|
+
};
|
|
4035
|
+
const _hoisted_39 = {
|
|
4036
|
+
class: "btn-group"
|
|
4037
|
+
};
|
|
4038
|
+
const _hoisted_40 = {
|
|
4039
|
+
class: "kq3d-client-print-titleContainerDiv"
|
|
4040
|
+
};
|
|
4041
|
+
const _hoisted_41 = {
|
|
4042
|
+
class: "baseImage"
|
|
4043
|
+
};
|
|
4044
|
+
const _hoisted_42 = ["src"];
|
|
4045
|
+
|
|
4046
|
+
const _hoisted_43 = /*#__PURE__*/(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
4047
|
+
style: {
|
|
4048
|
+
"width": "100%",
|
|
4049
|
+
"height": "100%",
|
|
4050
|
+
"position": "absolute",
|
|
4051
|
+
"index": "1000"
|
|
4052
|
+
}
|
|
4053
|
+
}, null, -1
|
|
4054
|
+
/* HOISTED */
|
|
4055
|
+
);
|
|
4056
|
+
|
|
4057
|
+
const _hoisted_44 = ["src"];
|
|
4058
|
+
const _hoisted_45 = ["id"];
|
|
4059
|
+
const _hoisted_46 = ["onClick"];
|
|
4060
|
+
const _hoisted_47 = {
|
|
4061
|
+
class: "kq3d-client-print-infomationContainer"
|
|
4062
|
+
};
|
|
4063
|
+
const _hoisted_48 = {
|
|
4064
|
+
class: "kq3d-client-print-systemTime"
|
|
4065
|
+
};
|
|
4066
|
+
const _hoisted_49 = {
|
|
4067
|
+
class: "kq3d-client-print-companyName"
|
|
4068
|
+
};
|
|
4069
|
+
|
|
4070
|
+
|
|
4071
|
+
|
|
4072
|
+
|
|
4073
|
+
|
|
4074
|
+
|
|
4075
|
+
|
|
4076
|
+
const __default__ = {
|
|
4077
|
+
name: "Kq3dClientPrint"
|
|
4078
|
+
};
|
|
4079
|
+
/* harmony default export */ var ClientPrintvue_type_script_setup_true_lang_js = (/*#__PURE__*/Object.assign(__default__, {
|
|
4080
|
+
props: {
|
|
4081
|
+
// 每个地图相关组件的必须参数 非必传 指定组件绑定的map对象的div的id
|
|
4082
|
+
mapTarget: String,
|
|
4083
|
+
//打印标题
|
|
4084
|
+
printTitle: {
|
|
4085
|
+
type: String,
|
|
4086
|
+
default: "XXXX一张图"
|
|
4087
|
+
},
|
|
4088
|
+
//打印显示的公司名
|
|
4089
|
+
companyName: {
|
|
4090
|
+
type: String,
|
|
4091
|
+
default: "苍穹数码技术股份有限公司"
|
|
4092
|
+
},
|
|
4093
|
+
// 是否显示阴影
|
|
4094
|
+
showShadow: {
|
|
4095
|
+
type: Boolean,
|
|
4096
|
+
default: true
|
|
4097
|
+
},
|
|
4098
|
+
options: Object,
|
|
4099
|
+
|
|
4100
|
+
/**
|
|
4101
|
+
* 图层数据源
|
|
4102
|
+
* 事例:
|
|
4103
|
+
* {
|
|
4104
|
+
name: null,// 服务名称
|
|
4105
|
+
url: null,//服务地址
|
|
4106
|
+
token: null,//服务token
|
|
4107
|
+
type: "kqmapserver", //服务类型 kqmapserver或者kq3dserver
|
|
4108
|
+
isShowAllLayers: true,
|
|
4109
|
+
defaultShowLayerNames: []
|
|
4110
|
+
}
|
|
4111
|
+
*/
|
|
4112
|
+
service: Object,
|
|
4113
|
+
// ScenceView初始化的参数对象,包含初始化范围和layer信息。
|
|
4114
|
+
scenceInfo: Object,
|
|
4115
|
+
// 默认显示的图层组名称
|
|
4116
|
+
defaultShowLayerNames: Array,
|
|
4117
|
+
showToolButtons: {
|
|
4118
|
+
type: Boolean,
|
|
4119
|
+
default: true
|
|
4120
|
+
},
|
|
4121
|
+
|
|
4122
|
+
/**
|
|
4123
|
+
* 例:"top-left","top-right","bottom-left","bottom-right","left","right","bottom"
|
|
4124
|
+
* {top:'16px',left:'16px'}, {top:16,left:16}
|
|
4125
|
+
*/
|
|
4126
|
+
toolButtonsPosition: [String, Object],
|
|
4127
|
+
showLogo: {
|
|
4128
|
+
type: Boolean,
|
|
4129
|
+
default: false
|
|
4130
|
+
}
|
|
4131
|
+
},
|
|
4132
|
+
|
|
4133
|
+
setup(__props, {
|
|
4134
|
+
expose
|
|
4135
|
+
}) {
|
|
4136
|
+
const props = __props;
|
|
4137
|
+
let viewModel = null; // 标题的数据
|
|
4138
|
+
|
|
4139
|
+
let setTitleDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
4140
|
+
style: {
|
|
4141
|
+
fontSize: "18px",
|
|
4142
|
+
fontFamily: "微软雅黑",
|
|
4143
|
+
color: "rgba(0, 0, 0)",
|
|
4144
|
+
textarea: "",
|
|
4145
|
+
backgroundColor: "",
|
|
4146
|
+
padding: "5px",
|
|
4147
|
+
borderRadius: "3px",
|
|
4148
|
+
shadowShowBg: "red",
|
|
4149
|
+
fontFamilys: [{
|
|
4150
|
+
value: "微软雅黑",
|
|
4151
|
+
label: "微软雅黑"
|
|
4152
|
+
}, {
|
|
4153
|
+
value: "新宋体",
|
|
4154
|
+
label: "新宋体"
|
|
4155
|
+
}, {
|
|
4156
|
+
value: "楷体",
|
|
4157
|
+
label: "楷体"
|
|
4158
|
+
}]
|
|
4159
|
+
},
|
|
4160
|
+
data: {
|
|
4161
|
+
title: "",
|
|
4162
|
+
shadowShow: false,
|
|
4163
|
+
titleShow: true
|
|
4164
|
+
}
|
|
4165
|
+
}); // 文本的数据
|
|
4166
|
+
|
|
4167
|
+
let setLabelDataform = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
4168
|
+
style: {
|
|
4169
|
+
fontSize: "18px",
|
|
4170
|
+
fontFamily: "微软雅黑",
|
|
4171
|
+
color: "#000000",
|
|
4172
|
+
width: "100%",
|
|
4173
|
+
resize: "none",
|
|
4174
|
+
height: "96px",
|
|
4175
|
+
border: "solid 1px #dcdee2",
|
|
4176
|
+
fontFamilys: [{
|
|
4177
|
+
value: "微软雅黑",
|
|
4178
|
+
label: "微软雅黑"
|
|
4179
|
+
}, {
|
|
4180
|
+
value: "新宋体",
|
|
4181
|
+
label: "新宋体"
|
|
4182
|
+
}, {
|
|
4183
|
+
value: "楷体",
|
|
4184
|
+
label: "楷体"
|
|
4185
|
+
}]
|
|
4186
|
+
},
|
|
4187
|
+
data: {
|
|
4188
|
+
labelValue: ""
|
|
4189
|
+
}
|
|
4190
|
+
});
|
|
4191
|
+
let cameraToImage = null; // 组件容器
|
|
4192
|
+
|
|
4193
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 选择容器
|
|
4194
|
+
|
|
4195
|
+
let settingBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 主内容容器
|
|
4196
|
+
|
|
4197
|
+
let mainBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
4198
|
+
let scenceImageUrl = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
4199
|
+
let titleRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 图层选择容器
|
|
4200
|
+
|
|
4201
|
+
let selectLayerBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 样式设置容器
|
|
4202
|
+
|
|
4203
|
+
let selectTitleBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 添加文本容器
|
|
4204
|
+
|
|
4205
|
+
let selectTextBoxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); //页面设置tab设置
|
|
4206
|
+
|
|
4207
|
+
const activeNames = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(["1"]); // 控制主容器与图层选择容器的切换
|
|
4208
|
+
|
|
4209
|
+
let isShowSettingBox = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(true); //图层选择显示控制
|
|
4210
|
+
|
|
4211
|
+
let isShowLayer = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); //标题设置显示控制
|
|
4212
|
+
|
|
4213
|
+
let isShowTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); //添加文本显示控制
|
|
4214
|
+
|
|
4215
|
+
let isShowText = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); // 边框样式
|
|
4216
|
+
|
|
4217
|
+
let borderStyleValue = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("printborder1"); //边框样式下拉选择
|
|
4218
|
+
|
|
4219
|
+
let borderStyleData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([{
|
|
4220
|
+
value: "printborder1",
|
|
4221
|
+
label: "模板一"
|
|
4222
|
+
}, {
|
|
4223
|
+
value: "printborder2",
|
|
4224
|
+
label: "模板二"
|
|
4225
|
+
}, {
|
|
4226
|
+
value: "printborder3",
|
|
4227
|
+
label: "模板三"
|
|
4228
|
+
}, {
|
|
4229
|
+
value: "printborder4",
|
|
4230
|
+
label: "模板四"
|
|
4231
|
+
}, {
|
|
4232
|
+
value: "printborder5",
|
|
4233
|
+
label: "模板五"
|
|
4234
|
+
}]); // 纸张设置
|
|
4235
|
+
|
|
4236
|
+
let sizeData = [[{
|
|
4237
|
+
f: "A2",
|
|
4238
|
+
a: "纵向"
|
|
4239
|
+
}, "a2VSize"], [{
|
|
4240
|
+
f: "A3",
|
|
4241
|
+
a: "纵向"
|
|
4242
|
+
}, "a3VSize"], [{
|
|
4243
|
+
f: "A4",
|
|
4244
|
+
a: "纵向"
|
|
4245
|
+
}, "a4VSize"], [{
|
|
4246
|
+
f: "A5",
|
|
4247
|
+
a: "纵向"
|
|
4248
|
+
}, "a5VSize"], [{
|
|
4249
|
+
f: "A6",
|
|
4250
|
+
a: "纵向"
|
|
4251
|
+
}, "a6VSize"], [{
|
|
4252
|
+
f: "A2",
|
|
4253
|
+
a: "横向"
|
|
4254
|
+
}, "a2HSize"], [{
|
|
4255
|
+
f: "A3",
|
|
4256
|
+
a: "横向"
|
|
4257
|
+
}, "a3HSize"], [{
|
|
4258
|
+
f: "A4",
|
|
4259
|
+
a: "横向"
|
|
4260
|
+
}, "a4HSize"], [{
|
|
4261
|
+
f: "A5",
|
|
4262
|
+
a: "横向"
|
|
4263
|
+
}, "a5HSize"], [{
|
|
4264
|
+
f: "A6",
|
|
4265
|
+
a: "横向"
|
|
4266
|
+
}, "a6HSize"]]; // 字体大小
|
|
4267
|
+
|
|
4268
|
+
let sizelist = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]); // 纸张类型
|
|
4269
|
+
|
|
4270
|
+
let papForm = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("A4"); // 默认
|
|
4271
|
+
// 纸张方向
|
|
4272
|
+
|
|
4273
|
+
let papAnchor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("纵向"); // 默认
|
|
4274
|
+
// 图片格式
|
|
4275
|
+
|
|
4276
|
+
let imageType = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("png"); //地图对象
|
|
4277
|
+
|
|
4278
|
+
let map2_ref = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); //图例对象
|
|
4279
|
+
|
|
4280
|
+
let lengend_ref = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(); // 图例窗口显示与隐藏
|
|
4281
|
+
|
|
4282
|
+
let legendShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); // 比例尺显示与隐藏
|
|
4283
|
+
|
|
4284
|
+
let scalesShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); // 指北针的显示与隐藏
|
|
4285
|
+
|
|
4286
|
+
let compassShow = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
4287
|
+
let isActive = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(0); //打印内容div
|
|
4288
|
+
|
|
4289
|
+
let printContentDiv = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 打印内容
|
|
4290
|
+
|
|
4291
|
+
let printDiv = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 打印内容中的地图容器
|
|
4292
|
+
|
|
4293
|
+
let printMap = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null); // 增加的文本的数据
|
|
4294
|
+
|
|
4295
|
+
let setLabelData = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)([]); //当前时间
|
|
4296
|
+
|
|
4297
|
+
let systemTime = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(""); // 公司名
|
|
4298
|
+
|
|
4299
|
+
let companyName = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
4300
|
+
let printState = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); // 打印对象
|
|
4301
|
+
|
|
4302
|
+
let printObj = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)({
|
|
4303
|
+
id: "printMap",
|
|
4304
|
+
popTitle: "打印",
|
|
4305
|
+
|
|
4306
|
+
beforeOpenCallback() {
|
|
4307
|
+
printState.value = true;
|
|
4308
|
+
},
|
|
4309
|
+
|
|
4310
|
+
openCallback() {
|
|
4311
|
+
printState.value = false;
|
|
4312
|
+
}
|
|
4313
|
+
|
|
4314
|
+
});
|
|
4315
|
+
let currentClick = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({});
|
|
4316
|
+
let scaleFloor = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(1);
|
|
4317
|
+
let scaleStep = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(0.2); // 查询进度条
|
|
4318
|
+
|
|
4319
|
+
let loadState = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false); // 三维球id
|
|
4320
|
+
|
|
4321
|
+
global_event_default().setDefaultMapInfo("scencePrint", "cesium", null);
|
|
4322
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
4323
|
+
setTitleDataform.value.data.title = props.printTitle;
|
|
4324
|
+
companyName.value = props.companyName;
|
|
4325
|
+
sizelist.value = [];
|
|
4326
|
+
|
|
4327
|
+
for (let i = 15; i <= 32; i++) {
|
|
4328
|
+
// 字体大小下拉
|
|
4329
|
+
sizelist.value.push(i);
|
|
4330
|
+
}
|
|
4331
|
+
|
|
4332
|
+
setLabelData.value = []; //当前时间
|
|
4333
|
+
|
|
4334
|
+
systemTime.value = getSystemIime();
|
|
4335
|
+
initControl();
|
|
4336
|
+
global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
|
|
4337
|
+
if (scenceView && scenceView._viewer) {
|
|
4338
|
+
viewModel = new ClientPrintViewModel/* default */.Z(scenceView);
|
|
4339
|
+
cameraToImage = new Cesium.Kq3dCanvasToImage(scenceView._viewer._container, {
|
|
4340
|
+
viewer: scenceView._viewer,
|
|
4341
|
+
canvas: scenceView._viewer.scene.canvas
|
|
4342
|
+
});
|
|
4343
|
+
}
|
|
4344
|
+
});
|
|
4345
|
+
});
|
|
4346
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
4347
|
+
destroy();
|
|
4348
|
+
viewModel = null;
|
|
4349
|
+
});
|
|
4350
|
+
/**
|
|
4351
|
+
* 获取当前时间
|
|
4352
|
+
* @returns {string}
|
|
4353
|
+
*/
|
|
4354
|
+
|
|
4355
|
+
function getSystemIime() {
|
|
4356
|
+
let numMap = new Map([["0", "零"], ["1", "一"], ["2", "二"], ["3", "三"], ["4", "四"], ["5", "五"], ["6", "六"], ["7", "七"], ["8", "八"], ["9", "九"]]);
|
|
4357
|
+
let tennumMap = new Map([["1", "十"], ["2", "二十"], ["3", "三十"]]);
|
|
4358
|
+
let nowDate = new Date();
|
|
4359
|
+
let year = nowDate.getFullYear() + ""; //年数字
|
|
4360
|
+
|
|
4361
|
+
let month = nowDate.getMonth() + 1 + ""; //月数字
|
|
4362
|
+
|
|
4363
|
+
let day = nowDate.getDate() + ""; //日数字
|
|
4364
|
+
|
|
4365
|
+
let yearCNStr = ""; //年中文
|
|
4366
|
+
|
|
4367
|
+
let nonthCNStr = ""; //月中文
|
|
4368
|
+
|
|
4369
|
+
let dayCNStr = ""; //日中文
|
|
4370
|
+
|
|
4371
|
+
for (let i = 0; i < year.length; i++) {
|
|
4372
|
+
yearCNStr += numMap.get(year[i]);
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
yearCNStr += "年";
|
|
4376
|
+
|
|
4377
|
+
if (month.length > 1) {
|
|
4378
|
+
nonthCNStr = tennumMap.get(month[0]);
|
|
4379
|
+
|
|
4380
|
+
if (month[1] != "0") {
|
|
4381
|
+
nonthCNStr += numMap.get(month[1]);
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
nonthCNStr += "月";
|
|
4385
|
+
} else {
|
|
4386
|
+
nonthCNStr = numMap.get(month[0]) + "月";
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4389
|
+
if (day.length > 1) {
|
|
4390
|
+
dayCNStr = tennumMap.get(day[0]);
|
|
4391
|
+
|
|
4392
|
+
if (day[1] != "0") {
|
|
4393
|
+
dayCNStr += numMap.get(day[1]);
|
|
4394
|
+
}
|
|
4395
|
+
|
|
4396
|
+
dayCNStr += "日";
|
|
4397
|
+
} else {
|
|
4398
|
+
dayCNStr = numMap.get(day[0]) + "日";
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
return yearCNStr + nonthCNStr + dayCNStr;
|
|
4402
|
+
}
|
|
4403
|
+
|
|
4404
|
+
function changStatusBar() {
|
|
4405
|
+
viewModel && viewModel.changStatusBar(scalesShow.value);
|
|
4406
|
+
}
|
|
4407
|
+
/**
|
|
4408
|
+
* 显示切换
|
|
4409
|
+
* @param {string} type
|
|
4410
|
+
*/
|
|
4411
|
+
|
|
4412
|
+
|
|
4413
|
+
function setShowChange(type) {
|
|
4414
|
+
settingBoxRef.value.style.height = `${mainBoxRef.value.clientHeight}px`; // settingBoxRef.value.style.height = `${mainBoxRef.value.clientHeight}px`;
|
|
4415
|
+
|
|
4416
|
+
if (type === "layer") {
|
|
4417
|
+
isShowLayer.value = true;
|
|
4418
|
+
isShowTitle.value = false;
|
|
4419
|
+
isShowText.value = false;
|
|
4420
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
4421
|
+
// settingBoxRef.value.style.height = `${selectLayerBoxRef.value.clientHeight}px`;
|
|
4422
|
+
settingBoxRef.value.style.height = `${selectLayerBoxRef.value.clientHeight}px`;
|
|
4423
|
+
});
|
|
4424
|
+
}
|
|
4425
|
+
|
|
4426
|
+
if (type === "title") {
|
|
4427
|
+
isShowLayer.value = false;
|
|
4428
|
+
isShowTitle.value = true;
|
|
4429
|
+
isShowText.value = false;
|
|
4430
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
4431
|
+
// settingBoxRef.value.style.height = `${selectTitleBoxRef.value.clientHeight}px`;
|
|
4432
|
+
settingBoxRef.value.style.height = `${selectTitleBoxRef.value.clientHeight}px`;
|
|
4433
|
+
});
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
if (type === "text") {
|
|
4437
|
+
isShowLayer.value = false;
|
|
4438
|
+
isShowTitle.value = false;
|
|
4439
|
+
isShowText.value = true;
|
|
4440
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
4441
|
+
// settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
|
|
4442
|
+
settingBoxRef.value.style.height = `${selectTextBoxRef.value.clientHeight}px`;
|
|
4443
|
+
});
|
|
4444
|
+
}
|
|
4445
|
+
}
|
|
4446
|
+
/**
|
|
4447
|
+
* 切换后的左侧高度样式还原
|
|
4448
|
+
*/
|
|
4449
|
+
|
|
4450
|
+
|
|
4451
|
+
function setMainStyle() {
|
|
4452
|
+
isShowLayer.value = false;
|
|
4453
|
+
isShowTitle.value = false;
|
|
4454
|
+
isShowText.value = false;
|
|
4455
|
+
settingBoxRef.value.style.height = `${mainBoxRef.value.clientHeight}px`;
|
|
4456
|
+
}
|
|
4457
|
+
/**
|
|
4458
|
+
* 左侧窗口高度还原
|
|
4459
|
+
*/
|
|
4460
|
+
|
|
4461
|
+
|
|
4462
|
+
function changeMainHeight() {
|
|
4463
|
+
settingBoxRef.value.style.height = "auto";
|
|
4464
|
+
}
|
|
4465
|
+
/**
|
|
4466
|
+
* 初始化要在地图中显示的控件
|
|
4467
|
+
*/
|
|
4468
|
+
|
|
4469
|
+
|
|
4470
|
+
function initControl() {
|
|
4471
|
+
var mapdiv = document.getElementById("scencePrint");
|
|
4472
|
+
let html = mapdiv.innerHTML;
|
|
4473
|
+
var legendDiv = document.getElementById("divlegendDiv");
|
|
4474
|
+
var compassDiv = document.getElementById("divcompassDiv");
|
|
4475
|
+
legendDiv.className = "kq3d-client-print-legendDiv";
|
|
4476
|
+
compassDiv.className = "kq3d-client-print-compassDiv";
|
|
4477
|
+
mapdiv.appendChild(compassDiv);
|
|
4478
|
+
mapdiv.appendChild(legendDiv);
|
|
4479
|
+
}
|
|
4480
|
+
/**
|
|
4481
|
+
* 边框样式切换
|
|
4482
|
+
* @param {object} value
|
|
4483
|
+
*/
|
|
4484
|
+
|
|
4485
|
+
|
|
4486
|
+
function changeBorderStyleData(value) {
|
|
4487
|
+
printContentDiv.value.className = "kq3d-client-print-printContentDiv " + "kq3d-client-print-" + borderStyleValue.value;
|
|
4488
|
+
}
|
|
4489
|
+
/**
|
|
4490
|
+
* 纸张大小的切换
|
|
4491
|
+
*/
|
|
4492
|
+
|
|
4493
|
+
|
|
4494
|
+
function changeMapContainerSize() {
|
|
4495
|
+
sizeData.forEach(item => {
|
|
4496
|
+
if (item[0].f === papForm.value && item[0].a === papAnchor.value) {
|
|
4497
|
+
let param = item[1];
|
|
4498
|
+
printMap.value.className = "kq3d-client-print-mapContainerDiv " + "kq3d-client-print-" + param;
|
|
4499
|
+
setScroll();
|
|
4500
|
+
}
|
|
4501
|
+
});
|
|
4502
|
+
}
|
|
4503
|
+
/**
|
|
4504
|
+
* 滚动条居中
|
|
4505
|
+
*/
|
|
4506
|
+
|
|
4507
|
+
|
|
4508
|
+
function setScroll() {
|
|
4509
|
+
printDiv.value.scrollTop = printMap.value.clientHeight / 2 - printDiv.value.clientHeight / 2;
|
|
4510
|
+
printDiv.value.scrollLeft = printMap.value.clientWidth / 2 - printDiv.value.clientWidth / 2;
|
|
4511
|
+
}
|
|
4512
|
+
/**
|
|
4513
|
+
* 添加文本
|
|
4514
|
+
*/
|
|
4515
|
+
|
|
4516
|
+
|
|
4517
|
+
function addLabel() {
|
|
4518
|
+
let item = {
|
|
4519
|
+
style: {
|
|
4520
|
+
fontSize: setLabelDataform.value.style.fontSize,
|
|
4521
|
+
fontFamily: setLabelDataform.value.style.fontFamily,
|
|
4522
|
+
color: setLabelDataform.value.style.color,
|
|
4523
|
+
padding: "10px 10px 5px 5px"
|
|
4524
|
+
},
|
|
4525
|
+
data: {
|
|
4526
|
+
dataId: setLabelData.value.length + 1,
|
|
4527
|
+
labelValue: setLabelDataform.value.data.labelValue,
|
|
4528
|
+
isShow: false
|
|
4529
|
+
}
|
|
4530
|
+
};
|
|
4531
|
+
setLabelData.value.push(item);
|
|
4532
|
+
setTimeout(() => {
|
|
4533
|
+
var mapdiv = document.getElementById("scencePrint");
|
|
4534
|
+
|
|
4535
|
+
for (let i = 0; i < setLabelData.value.length; i++) {
|
|
4536
|
+
var labelDiv = document.getElementById(setLabelData.value[i].data.dataId);
|
|
4537
|
+
labelDiv.style.display = "block";
|
|
4538
|
+
mapdiv.appendChild(labelDiv);
|
|
4539
|
+
}
|
|
4540
|
+
}, 200);
|
|
4541
|
+
}
|
|
4542
|
+
/**
|
|
4543
|
+
* 通过id删除文本
|
|
4544
|
+
* @param {string} id
|
|
4545
|
+
*/
|
|
4546
|
+
|
|
4547
|
+
|
|
4548
|
+
function delLabel(id) {
|
|
4549
|
+
for (let i = 0; i < setLabelData.value.length; i++) {
|
|
4550
|
+
if (id === setLabelData.value[i].data.dataId) {
|
|
4551
|
+
setLabelData.value.splice(i, 1);
|
|
4552
|
+
break;
|
|
4553
|
+
}
|
|
4554
|
+
}
|
|
4555
|
+
}
|
|
4556
|
+
/**
|
|
4557
|
+
* 清空文本
|
|
4558
|
+
*/
|
|
4559
|
+
|
|
4560
|
+
|
|
4561
|
+
function clearLabel() {
|
|
4562
|
+
setLabelData.value.splice(0, setLabelData.value.length);
|
|
4563
|
+
setLabelDataform.value.data.labelValue = "";
|
|
4564
|
+
}
|
|
4565
|
+
/**
|
|
4566
|
+
* 设置拖动时的鼠标样式
|
|
4567
|
+
* @param {object} event
|
|
4568
|
+
*/
|
|
4569
|
+
|
|
4570
|
+
|
|
4571
|
+
function setdragCursor(event) {
|
|
4572
|
+
let el = event.currentTarget;
|
|
4573
|
+
el.style.cursor = "move";
|
|
4574
|
+
}
|
|
4575
|
+
/**
|
|
4576
|
+
* 拖动DIV,地图不随着拖动
|
|
4577
|
+
* @param {object} event
|
|
4578
|
+
*/
|
|
4579
|
+
|
|
4580
|
+
|
|
4581
|
+
function dragTl(event) {
|
|
4582
|
+
let mx = 0;
|
|
4583
|
+
let my = 0;
|
|
4584
|
+
let dx = 0;
|
|
4585
|
+
let dy = 0;
|
|
4586
|
+
let isDraging = false;
|
|
4587
|
+
let el = event.currentTarget;
|
|
4588
|
+
|
|
4589
|
+
if (el.offsetTop < 0) {
|
|
4590
|
+
el.style.top = "0px";
|
|
4591
|
+
}
|
|
4592
|
+
|
|
4593
|
+
event = event || window.event;
|
|
4594
|
+
mx = event.pageX;
|
|
4595
|
+
my = event.pageY;
|
|
4596
|
+
dx = el.offsetLeft;
|
|
4597
|
+
dy = el.offsetTop;
|
|
4598
|
+
isDraging = true;
|
|
4599
|
+
document.addEventListener("mousemove", moveWin);
|
|
4600
|
+
document.addEventListener("mouseup", removeEvent);
|
|
4601
|
+
|
|
4602
|
+
document.onselectstart = function () {
|
|
4603
|
+
return false;
|
|
4604
|
+
};
|
|
4605
|
+
|
|
4606
|
+
event.stopPropagation(); // }
|
|
4607
|
+
|
|
4608
|
+
function moveWin(event) {
|
|
4609
|
+
event = event || window.event;
|
|
4610
|
+
map2_ref.value.getWebMap().map.dragging.disable();
|
|
4611
|
+
var x = event.pageX;
|
|
4612
|
+
var y = event.pageY;
|
|
4613
|
+
|
|
4614
|
+
if (isDraging) {
|
|
4615
|
+
var moveX = dx + x - mx;
|
|
4616
|
+
var moveY = dy + y - my;
|
|
4617
|
+
let pageW = 0;
|
|
4618
|
+
let pageH = 0;
|
|
4619
|
+
pageW = printContentDiv.value.clientWidth - 2;
|
|
4620
|
+
pageH = printContentDiv.value.clientHeight - 2; // 2 控制下面的终点
|
|
4621
|
+
|
|
4622
|
+
var dialogW = el.clientWidth;
|
|
4623
|
+
var dialogH = el.clientHeight;
|
|
4624
|
+
var maxX = pageW - dialogW;
|
|
4625
|
+
var maxY = pageH - dialogH;
|
|
4626
|
+
moveX = Math.min(Math.max(0, moveX), maxX); // 58 控制上面的起点
|
|
4627
|
+
|
|
4628
|
+
moveY = Math.min(Math.max(0, moveY), maxY); // 58 控制上面的起点
|
|
4629
|
+
|
|
4630
|
+
el.style.right = "auto";
|
|
4631
|
+
el.style.bottom = "auto";
|
|
4632
|
+
el.style.left = moveX + "px";
|
|
4633
|
+
el.style.top = moveY + "px";
|
|
4634
|
+
}
|
|
4635
|
+
}
|
|
4636
|
+
|
|
4637
|
+
function removeEvent() {
|
|
4638
|
+
document.removeEventListener("mousemove", moveWin);
|
|
4639
|
+
document.removeEventListener("mouseup", removeEvent);
|
|
4640
|
+
el.style.cursor = "";
|
|
4641
|
+
|
|
4642
|
+
document.onselectstart = function () {
|
|
4643
|
+
return true;
|
|
4644
|
+
};
|
|
4645
|
+
|
|
4646
|
+
isDraging = false;
|
|
4647
|
+
}
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
function canvasToImage() {
|
|
4651
|
+
global_event_default().getWebMapByMapTarget("scencePrint", scenceView => {
|
|
4652
|
+
if (scenceView && scenceView._viewer) {
|
|
4653
|
+
scenceImageUrl.value = cameraToImage.toDataURL(scenceView._viewer.scene.canvas, {
|
|
4654
|
+
width: scenceView._viewer._lastWidth,
|
|
4655
|
+
height: scenceView._viewer._lastHeight,
|
|
4656
|
+
type: "JPG"
|
|
4657
|
+
});
|
|
4658
|
+
}
|
|
4659
|
+
});
|
|
4660
|
+
}
|
|
4661
|
+
/**
|
|
4662
|
+
* 保存为图片
|
|
4663
|
+
*/
|
|
4664
|
+
|
|
4665
|
+
|
|
4666
|
+
function getPic() {
|
|
4667
|
+
canvasToImage();
|
|
4668
|
+
loadState.value = true; // 延时1000ms,等待图片读入到blob文件对象,然后使用URL.createObjectURL转换成src可用的地址
|
|
4669
|
+
|
|
4670
|
+
setTimeout(() => {
|
|
4671
|
+
external_html2canvas_default()(printMap.value, {
|
|
4672
|
+
taintTest: true,
|
|
4673
|
+
// 检测每张图片都已经加载完成
|
|
4674
|
+
logging: true,
|
|
4675
|
+
// 启用日志记录以进行调试 (发现加上对去白边有帮助)
|
|
4676
|
+
allowTaint: true,
|
|
4677
|
+
// 否允许跨源图像污染画布
|
|
4678
|
+
backgroundColor: null,
|
|
4679
|
+
// 解决生成的图片有白边
|
|
4680
|
+
useCORS: true,
|
|
4681
|
+
// 如果截图的内容里有图片,解决文件跨域问题
|
|
4682
|
+
timeout: 2000 // 加载延时
|
|
4683
|
+
|
|
4684
|
+
}).then(canvas => {
|
|
4685
|
+
loadState.value = false;
|
|
4686
|
+
let pageData = canvas.toDataURL("image/png", 1.0);
|
|
4687
|
+
let title = "printMap.png";
|
|
4688
|
+
|
|
4689
|
+
if (imageType.value === "jpg") {
|
|
4690
|
+
pageData = canvas.toDataURL("image/jpeg", 1.0);
|
|
4691
|
+
title = "printMap.jpg";
|
|
4692
|
+
}
|
|
4693
|
+
|
|
4694
|
+
const el = document.createElement("a"); // 设置 href 为图片经过 base64 编码后的字符串,默认为 png 格式
|
|
4695
|
+
|
|
4696
|
+
el.href = pageData;
|
|
4697
|
+
el.download = title; // 创建一个点击事件并对 a 标签进行触发
|
|
4698
|
+
|
|
4699
|
+
const event = new MouseEvent("click");
|
|
4700
|
+
el.dispatchEvent(event);
|
|
4701
|
+
});
|
|
4702
|
+
}, 1000);
|
|
4703
|
+
}
|
|
4704
|
+
/**
|
|
4705
|
+
* 显示图例
|
|
4706
|
+
* @param {object} e
|
|
4707
|
+
*/
|
|
4708
|
+
|
|
4709
|
+
|
|
4710
|
+
function showLegend(e) {
|
|
4711
|
+
if (e) {
|
|
4712
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
4713
|
+
lengend_ref.value.init();
|
|
4714
|
+
});
|
|
4715
|
+
}
|
|
4716
|
+
}
|
|
4717
|
+
/**
|
|
4718
|
+
* 等比例放大
|
|
4719
|
+
*/
|
|
4720
|
+
|
|
4721
|
+
|
|
4722
|
+
function Enlarge() {
|
|
4723
|
+
isActive.value = 1;
|
|
4724
|
+
mouseScrollEnlarge(1);
|
|
4725
|
+
}
|
|
4726
|
+
/**
|
|
4727
|
+
* 等比例缩小
|
|
4728
|
+
*/
|
|
4729
|
+
|
|
4730
|
+
|
|
4731
|
+
function Narrow() {
|
|
4732
|
+
isActive.value = 2;
|
|
4733
|
+
mouseScrollNarrow(-1);
|
|
4734
|
+
}
|
|
4735
|
+
/**
|
|
4736
|
+
* 拖动打印范围
|
|
4737
|
+
*/
|
|
4738
|
+
|
|
4739
|
+
|
|
4740
|
+
function MovePrint() {
|
|
4741
|
+
if (isActive.value === 3) {
|
|
4742
|
+
isActive.value = 0;
|
|
4743
|
+
} else {
|
|
4744
|
+
isActive.value = 3;
|
|
4745
|
+
let divScreen = document.querySelector("#printMap");
|
|
4746
|
+
divScreen.addEventListener("mousedown", downFunc);
|
|
4747
|
+
divScreen.addEventListener("mouseup", upFunc);
|
|
4748
|
+
}
|
|
4749
|
+
}
|
|
4750
|
+
/**
|
|
4751
|
+
* 拖动打印范围后还原
|
|
4752
|
+
*/
|
|
4753
|
+
|
|
4754
|
+
|
|
4755
|
+
function RefreshStatus() {
|
|
4756
|
+
isActive.value = 0;
|
|
4757
|
+
document.querySelector("#printMap").style.cursor = "";
|
|
4758
|
+
document.getElementById("printMap").style.marginLeft = "auto";
|
|
4759
|
+
document.getElementById("printMap").style.marginTop = 0;
|
|
4760
|
+
document.getElementById("printMap").style.transform = "";
|
|
4761
|
+
}
|
|
4762
|
+
/**
|
|
4763
|
+
* 拖动打印范围的点击鼠标左键事件
|
|
4764
|
+
* @param {object} e
|
|
4765
|
+
*/
|
|
4766
|
+
|
|
4767
|
+
|
|
4768
|
+
function downFunc(e) {
|
|
4769
|
+
if (isActive.value !== 3) {
|
|
4770
|
+
return false;
|
|
4771
|
+
}
|
|
4772
|
+
|
|
4773
|
+
document.querySelector("#printMap").style.cursor = "move";
|
|
4774
|
+
currentClick.x = e.pageX - document.getElementById("printMap").offsetLeft;
|
|
4775
|
+
currentClick.y = e.pageY - document.getElementById("printMap").offsetTop;
|
|
4776
|
+
document.addEventListener("mousemove", moveFunc);
|
|
4777
|
+
}
|
|
4778
|
+
/**
|
|
4779
|
+
* 拖动打印范围的松开鼠标左键事件
|
|
4780
|
+
* @param {object} e
|
|
4781
|
+
*/
|
|
4782
|
+
|
|
4783
|
+
|
|
4784
|
+
function upFunc() {
|
|
4785
|
+
document.querySelector("#printMap").style.cursor = "";
|
|
4786
|
+
document.removeEventListener("mousemove", moveFunc);
|
|
4787
|
+
}
|
|
4788
|
+
/**
|
|
4789
|
+
* 拖动打印范围的拖动鼠标事件
|
|
4790
|
+
* @param {object} e
|
|
4791
|
+
*/
|
|
4792
|
+
|
|
4793
|
+
|
|
4794
|
+
function moveFunc() {
|
|
4795
|
+
let mosPostion = getMousePos();
|
|
4796
|
+
moveScreenTable(mosPostion.x - currentClick.x, mosPostion.y - (currentClick.y + 50));
|
|
4797
|
+
}
|
|
4798
|
+
/**
|
|
4799
|
+
* 计算拖动后的位置
|
|
4800
|
+
* @param {nubmer} x
|
|
4801
|
+
* @param {nubmer} y
|
|
4802
|
+
*/
|
|
4803
|
+
|
|
4804
|
+
|
|
4805
|
+
function moveScreenTable(x, y) {
|
|
4806
|
+
let docScreen = document.querySelector("#printMap");
|
|
4807
|
+
let moveX = getPixelValue(docScreen, "left");
|
|
4808
|
+
let moveY = getPixelValue(docScreen, "top");
|
|
4809
|
+
moveX += x;
|
|
4810
|
+
moveY += y;
|
|
4811
|
+
|
|
4812
|
+
if (moveY < 0) {
|
|
4813
|
+
moveY = 0;
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
document.getElementById("printMap").style.marginLeft = moveX + "px";
|
|
4817
|
+
document.getElementById("printMap").style.marginTop = moveY + "px";
|
|
4818
|
+
}
|
|
4819
|
+
/**
|
|
4820
|
+
* 等比例放大
|
|
4821
|
+
* @param {number} step
|
|
4822
|
+
*/
|
|
4823
|
+
|
|
4824
|
+
|
|
4825
|
+
function mouseScrollEnlarge(step) {
|
|
4826
|
+
if (step > 0) {
|
|
4827
|
+
scaleFloor.value = scaleFloor.value + scaleStep.value;
|
|
4828
|
+
}
|
|
4829
|
+
|
|
4830
|
+
if (scaleFloor.value > 0) {
|
|
4831
|
+
document.getElementById("printMap").style.transform = "scale(" + scaleFloor.value + ")";
|
|
4832
|
+
} else {
|
|
4833
|
+
document.getElementById("printMap").style.transform = "";
|
|
4834
|
+
}
|
|
4835
|
+
}
|
|
4836
|
+
/**
|
|
4837
|
+
* 等比例缩小
|
|
4838
|
+
* @param {number} step
|
|
4839
|
+
*/
|
|
4840
|
+
|
|
4841
|
+
|
|
4842
|
+
function mouseScrollNarrow(step) {
|
|
4843
|
+
if (step < 0 && scaleFloor.value > scaleStep.value * 2) {
|
|
4844
|
+
scaleFloor.value = scaleFloor.value - scaleStep.value;
|
|
4845
|
+
} else {
|
|
4846
|
+
undefined;
|
|
4847
|
+
}
|
|
4848
|
+
|
|
4849
|
+
if (scaleFloor.value > 0) {
|
|
4850
|
+
document.getElementById("printMap").style.transform = "scale(" + scaleFloor.value + ")";
|
|
4851
|
+
} else {
|
|
4852
|
+
document.getElementById("printMap").style.transform = "";
|
|
4853
|
+
}
|
|
4854
|
+
}
|
|
4855
|
+
/**
|
|
4856
|
+
* 获取鼠标位置
|
|
4857
|
+
* @param {object} event
|
|
4858
|
+
*/
|
|
4859
|
+
|
|
4860
|
+
|
|
4861
|
+
function getMousePos(event) {
|
|
4862
|
+
const e = event || window.event;
|
|
4863
|
+
const x = e.clientX - document.querySelector("#printMap").offsetLeft;
|
|
4864
|
+
const y = e.clientY - document.querySelector("#printMap").offsetTop;
|
|
4865
|
+
return {
|
|
4866
|
+
x: e.clientX,
|
|
4867
|
+
y: e.clientY
|
|
4868
|
+
};
|
|
4869
|
+
}
|
|
4870
|
+
|
|
4871
|
+
function getPixelValue(doc, key) {
|
|
4872
|
+
return Number(doc.style[key].replace("px", ""));
|
|
4873
|
+
}
|
|
4874
|
+
/**
|
|
4875
|
+
* 清除设置
|
|
4876
|
+
*/
|
|
4877
|
+
|
|
4878
|
+
|
|
4879
|
+
function destroy() {
|
|
4880
|
+
if (legendShow.value) {
|
|
4881
|
+
legendShow.value = false;
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
if (scalesShow.value) {
|
|
4885
|
+
scalesShow.value = false;
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4888
|
+
setLabelData.value = [];
|
|
4889
|
+
setTitleDataform.value = {
|
|
4890
|
+
// 标题的数据
|
|
4891
|
+
style: {
|
|
4892
|
+
fontSize: "18px",
|
|
4893
|
+
fontFamily: "微软雅黑",
|
|
4894
|
+
color: "rgba(0, 0, 0)",
|
|
4895
|
+
textarea: "",
|
|
4896
|
+
backgroundColor: "",
|
|
4897
|
+
padding: "5px",
|
|
4898
|
+
borderRadius: "3px",
|
|
4899
|
+
shadowShowBg: "red",
|
|
4900
|
+
fontFamilys: [{
|
|
4901
|
+
value: "微软雅黑",
|
|
4902
|
+
label: "微软雅黑"
|
|
4903
|
+
}, {
|
|
4904
|
+
value: "新宋体",
|
|
4905
|
+
label: "新宋体"
|
|
4906
|
+
}, {
|
|
4907
|
+
value: "楷体",
|
|
4908
|
+
label: "楷体"
|
|
4909
|
+
}]
|
|
4910
|
+
},
|
|
4911
|
+
data: {
|
|
4912
|
+
title: "",
|
|
4913
|
+
shadowShow: false,
|
|
4914
|
+
titleShow: true
|
|
4915
|
+
}
|
|
4916
|
+
};
|
|
4917
|
+
setLabelDataform.value = {
|
|
4918
|
+
// 文本的数据
|
|
4919
|
+
style: {
|
|
4920
|
+
fontSize: "18px",
|
|
4921
|
+
fontFamily: "微软雅黑",
|
|
4922
|
+
color: "#000000",
|
|
4923
|
+
width: "216px",
|
|
4924
|
+
resize: "none",
|
|
4925
|
+
height: "96px",
|
|
4926
|
+
border: "solid 1px #dcdee2",
|
|
4927
|
+
fontFamilys: [{
|
|
4928
|
+
value: "微软雅黑",
|
|
4929
|
+
label: "微软雅黑"
|
|
4930
|
+
}, {
|
|
4931
|
+
value: "新宋体",
|
|
4932
|
+
label: "新宋体"
|
|
4933
|
+
}, {
|
|
4934
|
+
value: "楷体",
|
|
4935
|
+
label: "楷体"
|
|
4936
|
+
}]
|
|
4937
|
+
},
|
|
4938
|
+
data: {
|
|
4939
|
+
labelValue: ""
|
|
4940
|
+
}
|
|
4941
|
+
};
|
|
4942
|
+
viewModel.destroy();
|
|
4943
|
+
} // 抛出方法 外部调用
|
|
4944
|
+
|
|
4945
|
+
|
|
4946
|
+
expose({
|
|
4947
|
+
destroy
|
|
4948
|
+
});
|
|
4949
|
+
return (_ctx, _cache) => {
|
|
4950
|
+
const _component_kq_icon = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-icon");
|
|
4951
|
+
|
|
4952
|
+
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
4953
|
+
|
|
4954
|
+
const _component_kq_checkbox = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-checkbox");
|
|
4955
|
+
|
|
4956
|
+
const _component_kq_col = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-col");
|
|
4957
|
+
|
|
4958
|
+
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row");
|
|
4959
|
+
|
|
4960
|
+
const _component_kq_option = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-option");
|
|
4961
|
+
|
|
4962
|
+
const _component_kq_select = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-select");
|
|
4963
|
+
|
|
4964
|
+
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item");
|
|
4965
|
+
|
|
4966
|
+
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form");
|
|
4967
|
+
|
|
4968
|
+
const _component_kq_divider = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-divider");
|
|
4969
|
+
|
|
4970
|
+
const _component_kq_collapse_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse-item");
|
|
4971
|
+
|
|
4972
|
+
const _component_kq_collapse = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-collapse");
|
|
4973
|
+
|
|
4974
|
+
const _component_kq_layer_tree = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-layer-tree");
|
|
4975
|
+
|
|
4976
|
+
const _component_kq_input = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-input");
|
|
4977
|
+
|
|
4978
|
+
const _component_kq_color_picker = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-color-picker");
|
|
4979
|
+
|
|
4980
|
+
const _component_kq3d_status_bar = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq3d-status-bar");
|
|
4981
|
+
|
|
4982
|
+
const _component_kq_legend = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-legend");
|
|
4983
|
+
|
|
4984
|
+
const _component_kq_scence_view = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-scence-view");
|
|
4985
|
+
|
|
4986
|
+
const _component_kq_scrollbar = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-scrollbar");
|
|
4987
|
+
|
|
4988
|
+
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)("div", {
|
|
4989
|
+
class: "settleLayer",
|
|
4990
|
+
ref_key: "boxRef",
|
|
4991
|
+
ref: boxRef,
|
|
4992
|
+
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
4993
|
+
left: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowSettingBox) ? `16px` : `-442px`
|
|
4994
|
+
})
|
|
4995
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowSettingBox) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_button, {
|
|
4996
|
+
key: 0,
|
|
4997
|
+
onClick: _cache[0] || (_cache[0] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(isShowSettingBox) ? isShowSettingBox.value = false : isShowSettingBox = false),
|
|
4998
|
+
class: "hide-setting-box-btn"
|
|
4999
|
+
}, {
|
|
5000
|
+
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_icon, null, {
|
|
5001
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.DArrowLeft))]),
|
|
5002
|
+
_: 1
|
|
5003
|
+
/* STABLE */
|
|
5004
|
+
|
|
5005
|
+
})]),
|
|
5006
|
+
_: 1
|
|
5007
|
+
/* STABLE */
|
|
5008
|
+
|
|
5009
|
+
})) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), !(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowSettingBox) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_button, {
|
|
5010
|
+
key: 1,
|
|
5011
|
+
onClick: _cache[1] || (_cache[1] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(isShowSettingBox) ? isShowSettingBox.value = true : isShowSettingBox = true),
|
|
5012
|
+
class: "show-setting-box-btn"
|
|
5013
|
+
}, {
|
|
5014
|
+
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_icon, null, {
|
|
5015
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.DArrowRight))]),
|
|
5016
|
+
_: 1
|
|
5017
|
+
/* STABLE */
|
|
5018
|
+
|
|
5019
|
+
})]),
|
|
5020
|
+
_: 1
|
|
5021
|
+
/* STABLE */
|
|
5022
|
+
|
|
5023
|
+
})) : (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", {
|
|
5024
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["setting-box", {
|
|
5025
|
+
'kq-box-shadow': __props.showShadow
|
|
5026
|
+
}]),
|
|
5027
|
+
ref_key: "settingBoxRef",
|
|
5028
|
+
ref: settingBoxRef
|
|
5029
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5030
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["box", (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowLayer) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle) ? 'is-show-layer' : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText) ? 'is-show-layer' : null])
|
|
5031
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5032
|
+
class: "main-box",
|
|
5033
|
+
ref_key: "mainBoxRef",
|
|
5034
|
+
ref: mainBoxRef
|
|
5035
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图层选择-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5036
|
+
class: "select-layer-bar bar",
|
|
5037
|
+
onClick: _cache[2] || (_cache[2] = $event => setShowChange('layer'))
|
|
5038
|
+
}, [_hoisted_3, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
5039
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowRight))]),
|
|
5040
|
+
_: 1
|
|
5041
|
+
/* STABLE */
|
|
5042
|
+
|
|
5043
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5044
|
+
class: "select-layer-bar bar select-layer-margin",
|
|
5045
|
+
onClick: _cache[3] || (_cache[3] = $event => setShowChange('title'))
|
|
5046
|
+
}, [_hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
5047
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowRight))]),
|
|
5048
|
+
_: 1
|
|
5049
|
+
/* STABLE */
|
|
5050
|
+
|
|
5051
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5052
|
+
class: "select-layer-bar bar select-layer-margin",
|
|
5053
|
+
onClick: _cache[4] || (_cache[4] = $event => setShowChange('text'))
|
|
5054
|
+
}, [_hoisted_5, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
5055
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowRight))]),
|
|
5056
|
+
_: 1
|
|
5057
|
+
/* STABLE */
|
|
5058
|
+
|
|
5059
|
+
})]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
5060
|
+
modelValue: activeNames.value,
|
|
5061
|
+
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => activeNames.value = $event),
|
|
5062
|
+
onChange: changeMainHeight
|
|
5063
|
+
}, {
|
|
5064
|
+
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_collapse_item, {
|
|
5065
|
+
name: "1"
|
|
5066
|
+
}, {
|
|
5067
|
+
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
5068
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["header-icon", activeNames.value.includes('1') ? 'is-active' : null])
|
|
5069
|
+
}, {
|
|
5070
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.CaretRight))]),
|
|
5071
|
+
_: 1
|
|
5072
|
+
/* STABLE */
|
|
5073
|
+
|
|
5074
|
+
}, 8
|
|
5075
|
+
/* PROPS */
|
|
5076
|
+
, ["class"])]),
|
|
5077
|
+
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_row, null, {
|
|
5078
|
+
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_col, {
|
|
5079
|
+
span: 9
|
|
5080
|
+
}, {
|
|
5081
|
+
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_checkbox, {
|
|
5082
|
+
class: "btnStyle",
|
|
5083
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow),
|
|
5084
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(legendShow) ? legendShow.value = $event : legendShow = $event),
|
|
5085
|
+
onChange: showLegend
|
|
5086
|
+
}, {
|
|
5087
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_7]),
|
|
5088
|
+
_: 1
|
|
5089
|
+
/* STABLE */
|
|
5090
|
+
|
|
5091
|
+
}, 8
|
|
5092
|
+
/* PROPS */
|
|
5093
|
+
, ["modelValue"])]),
|
|
5094
|
+
_: 1
|
|
5095
|
+
/* STABLE */
|
|
5096
|
+
|
|
5097
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5098
|
+
span: 9
|
|
5099
|
+
}, {
|
|
5100
|
+
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_checkbox, {
|
|
5101
|
+
class: "btnStyle",
|
|
5102
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(compassShow),
|
|
5103
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(compassShow) ? compassShow.value = $event : compassShow = $event)
|
|
5104
|
+
}, {
|
|
5105
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_8]),
|
|
5106
|
+
_: 1
|
|
5107
|
+
/* STABLE */
|
|
5108
|
+
|
|
5109
|
+
}, 8
|
|
5110
|
+
/* PROPS */
|
|
5111
|
+
, ["modelValue"])]),
|
|
5112
|
+
_: 1
|
|
5113
|
+
/* STABLE */
|
|
5114
|
+
|
|
5115
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5116
|
+
span: 6
|
|
5117
|
+
}, {
|
|
5118
|
+
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_checkbox, {
|
|
5119
|
+
class: "btnStyle",
|
|
5120
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scalesShow),
|
|
5121
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(scalesShow) ? scalesShow.value = $event : scalesShow = $event),
|
|
5122
|
+
onChange: changStatusBar
|
|
5123
|
+
}, {
|
|
5124
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_9]),
|
|
5125
|
+
_: 1
|
|
5126
|
+
/* STABLE */
|
|
5127
|
+
|
|
5128
|
+
}, 8
|
|
5129
|
+
/* PROPS */
|
|
5130
|
+
, ["modelValue"])]),
|
|
5131
|
+
_: 1
|
|
5132
|
+
/* STABLE */
|
|
5133
|
+
|
|
5134
|
+
})]),
|
|
5135
|
+
_: 1
|
|
5136
|
+
/* STABLE */
|
|
5137
|
+
|
|
5138
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_10, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
5139
|
+
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform),
|
|
5140
|
+
"label-width": "70px",
|
|
5141
|
+
"label-position": "left"
|
|
5142
|
+
}, {
|
|
5143
|
+
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_row, null, {
|
|
5144
|
+
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_col, null, {
|
|
5145
|
+
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, {
|
|
5146
|
+
label: "花边"
|
|
5147
|
+
}, {
|
|
5148
|
+
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_select, {
|
|
5149
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleValue),
|
|
5150
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(borderStyleValue) ? borderStyleValue.value = $event : borderStyleValue = $event),
|
|
5151
|
+
onChange: changeBorderStyleData
|
|
5152
|
+
}, {
|
|
5153
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(borderStyleData), item => {
|
|
5154
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_option, {
|
|
5155
|
+
key: item.value,
|
|
5156
|
+
label: item.label,
|
|
5157
|
+
value: item.value
|
|
5158
|
+
}, null, 8
|
|
5159
|
+
/* PROPS */
|
|
5160
|
+
, ["label", "value"]);
|
|
5161
|
+
}), 128
|
|
5162
|
+
/* KEYED_FRAGMENT */
|
|
5163
|
+
))]),
|
|
5164
|
+
_: 1
|
|
5165
|
+
/* STABLE */
|
|
5166
|
+
|
|
5167
|
+
}, 8
|
|
5168
|
+
/* PROPS */
|
|
5169
|
+
, ["modelValue"])]),
|
|
5170
|
+
_: 1
|
|
5171
|
+
/* STABLE */
|
|
5172
|
+
|
|
5173
|
+
})]),
|
|
5174
|
+
_: 1
|
|
5175
|
+
/* STABLE */
|
|
5176
|
+
|
|
5177
|
+
})]),
|
|
5178
|
+
_: 1
|
|
5179
|
+
/* STABLE */
|
|
5180
|
+
|
|
5181
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5182
|
+
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_col, null, {
|
|
5183
|
+
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, {
|
|
5184
|
+
label: "纸张类型"
|
|
5185
|
+
}, {
|
|
5186
|
+
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_select, {
|
|
5187
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papForm),
|
|
5188
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papForm) ? papForm.value = $event : papForm = $event),
|
|
5189
|
+
onChange: changeMapContainerSize
|
|
5190
|
+
}, {
|
|
5191
|
+
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_option, {
|
|
5192
|
+
value: "A2"
|
|
5193
|
+
}, {
|
|
5194
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_11]),
|
|
5195
|
+
_: 1
|
|
5196
|
+
/* STABLE */
|
|
5197
|
+
|
|
5198
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5199
|
+
value: "A3"
|
|
5200
|
+
}, {
|
|
5201
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_12]),
|
|
5202
|
+
_: 1
|
|
5203
|
+
/* STABLE */
|
|
5204
|
+
|
|
5205
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5206
|
+
value: "A4"
|
|
5207
|
+
}, {
|
|
5208
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_13]),
|
|
5209
|
+
_: 1
|
|
5210
|
+
/* STABLE */
|
|
5211
|
+
|
|
5212
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5213
|
+
value: "A5"
|
|
5214
|
+
}, {
|
|
5215
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_14]),
|
|
5216
|
+
_: 1
|
|
5217
|
+
/* STABLE */
|
|
5218
|
+
|
|
5219
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5220
|
+
value: "A6"
|
|
5221
|
+
}, {
|
|
5222
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_15]),
|
|
5223
|
+
_: 1
|
|
5224
|
+
/* STABLE */
|
|
5225
|
+
|
|
5226
|
+
})]),
|
|
5227
|
+
_: 1
|
|
5228
|
+
/* STABLE */
|
|
5229
|
+
|
|
5230
|
+
}, 8
|
|
5231
|
+
/* PROPS */
|
|
5232
|
+
, ["modelValue"])]),
|
|
5233
|
+
_: 1
|
|
5234
|
+
/* STABLE */
|
|
5235
|
+
|
|
5236
|
+
})]),
|
|
5237
|
+
_: 1
|
|
5238
|
+
/* STABLE */
|
|
5239
|
+
|
|
5240
|
+
})]),
|
|
5241
|
+
_: 1
|
|
5242
|
+
/* STABLE */
|
|
5243
|
+
|
|
5244
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5245
|
+
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_col, null, {
|
|
5246
|
+
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, {
|
|
5247
|
+
label: "纸张方向"
|
|
5248
|
+
}, {
|
|
5249
|
+
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_select, {
|
|
5250
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(papAnchor),
|
|
5251
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(papAnchor) ? papAnchor.value = $event : papAnchor = $event),
|
|
5252
|
+
onChange: changeMapContainerSize
|
|
5253
|
+
}, {
|
|
5254
|
+
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_option, {
|
|
5255
|
+
value: "纵向"
|
|
5256
|
+
}, {
|
|
5257
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_16]),
|
|
5258
|
+
_: 1
|
|
5259
|
+
/* STABLE */
|
|
5260
|
+
|
|
5261
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5262
|
+
value: "横向"
|
|
5263
|
+
}, {
|
|
5264
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_17]),
|
|
5265
|
+
_: 1
|
|
5266
|
+
/* STABLE */
|
|
5267
|
+
|
|
5268
|
+
})]),
|
|
5269
|
+
_: 1
|
|
5270
|
+
/* STABLE */
|
|
5271
|
+
|
|
5272
|
+
}, 8
|
|
5273
|
+
/* PROPS */
|
|
5274
|
+
, ["modelValue"])]),
|
|
5275
|
+
_: 1
|
|
5276
|
+
/* STABLE */
|
|
5277
|
+
|
|
5278
|
+
})]),
|
|
5279
|
+
_: 1
|
|
5280
|
+
/* STABLE */
|
|
5281
|
+
|
|
5282
|
+
})]),
|
|
5283
|
+
_: 1
|
|
5284
|
+
/* STABLE */
|
|
5285
|
+
|
|
5286
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5287
|
+
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_col, null, {
|
|
5288
|
+
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, {
|
|
5289
|
+
label: "图片格式"
|
|
5290
|
+
}, {
|
|
5291
|
+
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_select, {
|
|
5292
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(imageType),
|
|
5293
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.isRef)(imageType) ? imageType.value = $event : imageType = $event)
|
|
5294
|
+
}, {
|
|
5295
|
+
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_option, {
|
|
5296
|
+
value: "png"
|
|
5297
|
+
}, {
|
|
5298
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_18]),
|
|
5299
|
+
_: 1
|
|
5300
|
+
/* STABLE */
|
|
5301
|
+
|
|
5302
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_option, {
|
|
5303
|
+
value: "jpg"
|
|
5304
|
+
}, {
|
|
5305
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_19]),
|
|
5306
|
+
_: 1
|
|
5307
|
+
/* STABLE */
|
|
5308
|
+
|
|
5309
|
+
})]),
|
|
5310
|
+
_: 1
|
|
5311
|
+
/* STABLE */
|
|
5312
|
+
|
|
5313
|
+
}, 8
|
|
5314
|
+
/* PROPS */
|
|
5315
|
+
, ["modelValue"])]),
|
|
5316
|
+
_: 1
|
|
5317
|
+
/* STABLE */
|
|
5318
|
+
|
|
5319
|
+
})]),
|
|
5320
|
+
_: 1
|
|
5321
|
+
/* STABLE */
|
|
5322
|
+
|
|
5323
|
+
})]),
|
|
5324
|
+
_: 1
|
|
5325
|
+
/* STABLE */
|
|
5326
|
+
|
|
5327
|
+
})]),
|
|
5328
|
+
_: 1
|
|
5329
|
+
/* STABLE */
|
|
5330
|
+
|
|
5331
|
+
}, 8
|
|
5332
|
+
/* PROPS */
|
|
5333
|
+
, ["model"])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_20, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5334
|
+
type: "primary",
|
|
5335
|
+
onClick: _cache[12] || (_cache[12] = $event => getPic()),
|
|
5336
|
+
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(loadState)
|
|
5337
|
+
}, {
|
|
5338
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_21]),
|
|
5339
|
+
_: 1
|
|
5340
|
+
/* STABLE */
|
|
5341
|
+
|
|
5342
|
+
}, 8
|
|
5343
|
+
/* PROPS */
|
|
5344
|
+
, ["loading"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)(((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_button, {
|
|
5345
|
+
type: "plain",
|
|
5346
|
+
loading: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printState),
|
|
5347
|
+
onClick: _cache[13] || (_cache[13] = $event => canvasToImage())
|
|
5348
|
+
}, {
|
|
5349
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_22]),
|
|
5350
|
+
_: 1
|
|
5351
|
+
/* STABLE */
|
|
5352
|
+
|
|
5353
|
+
}, 8
|
|
5354
|
+
/* PROPS */
|
|
5355
|
+
, ["loading"])), [[(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)((external_vue3_print_nb_default())), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(printObj)]])])]),
|
|
5356
|
+
_: 1
|
|
5357
|
+
/* STABLE */
|
|
5358
|
+
|
|
5359
|
+
})]),
|
|
5360
|
+
_: 1
|
|
5361
|
+
/* STABLE */
|
|
5362
|
+
|
|
5363
|
+
}, 8
|
|
5364
|
+
/* PROPS */
|
|
5365
|
+
, ["modelValue"])], 512
|
|
5366
|
+
/* NEED_PATCH */
|
|
5367
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图层选择-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowLayer) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
|
|
5368
|
+
key: 0,
|
|
5369
|
+
class: "select-layer-box",
|
|
5370
|
+
ref_key: "selectLayerBoxRef",
|
|
5371
|
+
ref: selectLayerBoxRef
|
|
5372
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 图层选择-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5373
|
+
class: "select-layer-bar bar",
|
|
5374
|
+
onClick: setMainStyle
|
|
5375
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
5376
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowLeft))]),
|
|
5377
|
+
_: 1
|
|
5378
|
+
/* STABLE */
|
|
5379
|
+
|
|
5380
|
+
}), _hoisted_23]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_24, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_layer_tree, {
|
|
5381
|
+
showShadow: false,
|
|
5382
|
+
"map-target": 'scencePrint'
|
|
5383
|
+
})])], 512
|
|
5384
|
+
/* NEED_PATCH */
|
|
5385
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 标题设置-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5386
|
+
class: "select-layer-box",
|
|
5387
|
+
ref_key: "selectTitleBoxRef",
|
|
5388
|
+
ref: selectTitleBoxRef
|
|
5389
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 标题设置-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5390
|
+
class: "select-layer-bar bar",
|
|
5391
|
+
onClick: setMainStyle
|
|
5392
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
5393
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowLeft))]),
|
|
5394
|
+
_: 1
|
|
5395
|
+
/* STABLE */
|
|
5396
|
+
|
|
5397
|
+
}), _hoisted_25]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
5398
|
+
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform),
|
|
5399
|
+
"label-width": "70px",
|
|
5400
|
+
"label-position": "left"
|
|
5401
|
+
}, {
|
|
5402
|
+
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_26, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5403
|
+
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_col, {
|
|
5404
|
+
span: 24
|
|
5405
|
+
}, {
|
|
5406
|
+
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, {
|
|
5407
|
+
label: "标题"
|
|
5408
|
+
}, {
|
|
5409
|
+
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_input, {
|
|
5410
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title,
|
|
5411
|
+
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title = $event)
|
|
5412
|
+
}, null, 8
|
|
5413
|
+
/* PROPS */
|
|
5414
|
+
, ["modelValue"])]),
|
|
5415
|
+
_: 1
|
|
5416
|
+
/* STABLE */
|
|
5417
|
+
|
|
5418
|
+
})]),
|
|
5419
|
+
_: 1
|
|
5420
|
+
/* STABLE */
|
|
5421
|
+
|
|
5422
|
+
})]),
|
|
5423
|
+
_: 1
|
|
5424
|
+
/* STABLE */
|
|
5425
|
+
|
|
5426
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5427
|
+
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_col, {
|
|
5428
|
+
span: 24
|
|
5429
|
+
}, {
|
|
5430
|
+
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, {
|
|
5431
|
+
label: "字体样式"
|
|
5432
|
+
}, {
|
|
5433
|
+
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_select, {
|
|
5434
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily,
|
|
5435
|
+
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamily = $event),
|
|
5436
|
+
placeholder: "请选择",
|
|
5437
|
+
style: {
|
|
5438
|
+
"width": "100%"
|
|
5439
|
+
}
|
|
5440
|
+
}, {
|
|
5441
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontFamilys, item => {
|
|
5442
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_option, {
|
|
5443
|
+
key: item.value,
|
|
5444
|
+
label: item.label,
|
|
5445
|
+
value: item.value
|
|
5446
|
+
}, null, 8
|
|
5447
|
+
/* PROPS */
|
|
5448
|
+
, ["label", "value"]);
|
|
5449
|
+
}), 128
|
|
5450
|
+
/* KEYED_FRAGMENT */
|
|
5451
|
+
))]),
|
|
5452
|
+
_: 1
|
|
5453
|
+
/* STABLE */
|
|
5454
|
+
|
|
5455
|
+
}, 8
|
|
5456
|
+
/* PROPS */
|
|
5457
|
+
, ["modelValue"])]),
|
|
5458
|
+
_: 1
|
|
5459
|
+
/* STABLE */
|
|
5460
|
+
|
|
5461
|
+
})]),
|
|
5462
|
+
_: 1
|
|
5463
|
+
/* STABLE */
|
|
5464
|
+
|
|
5465
|
+
})]),
|
|
5466
|
+
_: 1
|
|
5467
|
+
/* STABLE */
|
|
5468
|
+
|
|
5469
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5470
|
+
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_col, {
|
|
5471
|
+
span: 16
|
|
5472
|
+
}, {
|
|
5473
|
+
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, {
|
|
5474
|
+
label: "字体大小"
|
|
5475
|
+
}, {
|
|
5476
|
+
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_select, {
|
|
5477
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize,
|
|
5478
|
+
"onUpdate:modelValue": _cache[17] || (_cache[17] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.fontSize = $event),
|
|
5479
|
+
placeholder: "字体大小"
|
|
5480
|
+
}, {
|
|
5481
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(sizelist).value, size => {
|
|
5482
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_option, {
|
|
5483
|
+
key: size,
|
|
5484
|
+
value: `${size}px`
|
|
5485
|
+
}, {
|
|
5486
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(size), 1
|
|
5487
|
+
/* TEXT */
|
|
5488
|
+
)]),
|
|
5489
|
+
_: 2
|
|
5490
|
+
/* DYNAMIC */
|
|
5491
|
+
|
|
5492
|
+
}, 1032
|
|
5493
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
5494
|
+
, ["value"]);
|
|
5495
|
+
}), 128
|
|
5496
|
+
/* KEYED_FRAGMENT */
|
|
5497
|
+
))]),
|
|
5498
|
+
_: 1
|
|
5499
|
+
/* STABLE */
|
|
5500
|
+
|
|
5501
|
+
}, 8
|
|
5502
|
+
/* PROPS */
|
|
5503
|
+
, ["modelValue"])]),
|
|
5504
|
+
_: 1
|
|
5505
|
+
/* STABLE */
|
|
5506
|
+
|
|
5507
|
+
})]),
|
|
5508
|
+
_: 1
|
|
5509
|
+
/* STABLE */
|
|
5510
|
+
|
|
5511
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5512
|
+
span: 2
|
|
5513
|
+
}, {
|
|
5514
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_27]),
|
|
5515
|
+
_: 1
|
|
5516
|
+
/* STABLE */
|
|
5517
|
+
|
|
5518
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5519
|
+
span: 6
|
|
5520
|
+
}, {
|
|
5521
|
+
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, {
|
|
5522
|
+
label: "字体颜色"
|
|
5523
|
+
}, {
|
|
5524
|
+
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_color_picker, {
|
|
5525
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color,
|
|
5526
|
+
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.color = $event),
|
|
5527
|
+
"show-alpha": ""
|
|
5528
|
+
}, null, 8
|
|
5529
|
+
/* PROPS */
|
|
5530
|
+
, ["modelValue"])]),
|
|
5531
|
+
_: 1
|
|
5532
|
+
/* STABLE */
|
|
5533
|
+
|
|
5534
|
+
})]),
|
|
5535
|
+
_: 1
|
|
5536
|
+
/* STABLE */
|
|
5537
|
+
|
|
5538
|
+
})]),
|
|
5539
|
+
_: 1
|
|
5540
|
+
/* STABLE */
|
|
5541
|
+
|
|
5542
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5543
|
+
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_col, {
|
|
5544
|
+
span: 8
|
|
5545
|
+
}, {
|
|
5546
|
+
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, {
|
|
5547
|
+
label: "背景颜色"
|
|
5548
|
+
}, {
|
|
5549
|
+
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_color_picker, {
|
|
5550
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor,
|
|
5551
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.backgroundColor = $event),
|
|
5552
|
+
"show-alpha": ""
|
|
5553
|
+
}, null, 8
|
|
5554
|
+
/* PROPS */
|
|
5555
|
+
, ["modelValue"])]),
|
|
5556
|
+
_: 1
|
|
5557
|
+
/* STABLE */
|
|
5558
|
+
|
|
5559
|
+
})]),
|
|
5560
|
+
_: 1
|
|
5561
|
+
/* STABLE */
|
|
5562
|
+
|
|
5563
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5564
|
+
span: 8
|
|
5565
|
+
}, {
|
|
5566
|
+
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, {
|
|
5567
|
+
label: "阴影颜色"
|
|
5568
|
+
}, {
|
|
5569
|
+
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_color_picker, {
|
|
5570
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg,
|
|
5571
|
+
"onUpdate:modelValue": _cache[20] || (_cache[20] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg = $event),
|
|
5572
|
+
"show-alpha": ""
|
|
5573
|
+
}, null, 8
|
|
5574
|
+
/* PROPS */
|
|
5575
|
+
, ["modelValue"])]),
|
|
5576
|
+
_: 1
|
|
5577
|
+
/* STABLE */
|
|
5578
|
+
|
|
5579
|
+
})]),
|
|
5580
|
+
_: 1
|
|
5581
|
+
/* STABLE */
|
|
5582
|
+
|
|
5583
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5584
|
+
span: 8
|
|
5585
|
+
}, {
|
|
5586
|
+
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_28, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5587
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow,
|
|
5588
|
+
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow = $event)
|
|
5589
|
+
}, {
|
|
5590
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_29]),
|
|
5591
|
+
_: 1
|
|
5592
|
+
/* STABLE */
|
|
5593
|
+
|
|
5594
|
+
}, 8
|
|
5595
|
+
/* PROPS */
|
|
5596
|
+
, ["modelValue"])])]),
|
|
5597
|
+
_: 1
|
|
5598
|
+
/* STABLE */
|
|
5599
|
+
|
|
5600
|
+
})]),
|
|
5601
|
+
_: 1
|
|
5602
|
+
/* STABLE */
|
|
5603
|
+
|
|
5604
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_30, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_checkbox, {
|
|
5605
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow,
|
|
5606
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow = $event)
|
|
5607
|
+
}, {
|
|
5608
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_31]),
|
|
5609
|
+
_: 1
|
|
5610
|
+
/* STABLE */
|
|
5611
|
+
|
|
5612
|
+
}, 8
|
|
5613
|
+
/* PROPS */
|
|
5614
|
+
, ["modelValue"])])])]),
|
|
5615
|
+
_: 1
|
|
5616
|
+
/* STABLE */
|
|
5617
|
+
|
|
5618
|
+
}, 8
|
|
5619
|
+
/* PROPS */
|
|
5620
|
+
, ["model"])], 512
|
|
5621
|
+
/* NEED_PATCH */
|
|
5622
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowTitle)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 添加文本-box "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5623
|
+
class: "select-layer-box",
|
|
5624
|
+
ref_key: "selectTextBoxRef",
|
|
5625
|
+
ref: selectTextBoxRef
|
|
5626
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 添加文本-bar "), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5627
|
+
class: "select-layer-bar bar",
|
|
5628
|
+
onClick: setMainStyle
|
|
5629
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, null, {
|
|
5630
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ArrowLeft))]),
|
|
5631
|
+
_: 1
|
|
5632
|
+
/* STABLE */
|
|
5633
|
+
|
|
5634
|
+
}), _hoisted_32]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_33, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
5635
|
+
model: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform),
|
|
5636
|
+
"label-width": "70px",
|
|
5637
|
+
"label-position": "left"
|
|
5638
|
+
}, {
|
|
5639
|
+
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, {
|
|
5640
|
+
label: "字体样式"
|
|
5641
|
+
}, {
|
|
5642
|
+
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_select, {
|
|
5643
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily,
|
|
5644
|
+
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamily = $event),
|
|
5645
|
+
placeholder: "请选择",
|
|
5646
|
+
style: {
|
|
5647
|
+
"width": "100%"
|
|
5648
|
+
}
|
|
5649
|
+
}, {
|
|
5650
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontFamilys, item => {
|
|
5651
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_option, {
|
|
5652
|
+
key: item.value,
|
|
5653
|
+
label: item.label,
|
|
5654
|
+
value: item.value
|
|
5655
|
+
}, null, 8
|
|
5656
|
+
/* PROPS */
|
|
5657
|
+
, ["label", "value"]);
|
|
5658
|
+
}), 128
|
|
5659
|
+
/* KEYED_FRAGMENT */
|
|
5660
|
+
))]),
|
|
5661
|
+
_: 1
|
|
5662
|
+
/* STABLE */
|
|
5663
|
+
|
|
5664
|
+
}, 8
|
|
5665
|
+
/* PROPS */
|
|
5666
|
+
, ["modelValue"])]),
|
|
5667
|
+
_: 1
|
|
5668
|
+
/* STABLE */
|
|
5669
|
+
|
|
5670
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
5671
|
+
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_col, {
|
|
5672
|
+
span: 16
|
|
5673
|
+
}, {
|
|
5674
|
+
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, {
|
|
5675
|
+
label: "字体大小"
|
|
5676
|
+
}, {
|
|
5677
|
+
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_select, {
|
|
5678
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize,
|
|
5679
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.fontSize = $event),
|
|
5680
|
+
placeholder: "大小"
|
|
5681
|
+
}, {
|
|
5682
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(sizelist).value, size => {
|
|
5683
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_option, {
|
|
5684
|
+
key: size,
|
|
5685
|
+
value: `${size}px`
|
|
5686
|
+
}, {
|
|
5687
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createTextVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(size), 1
|
|
5688
|
+
/* TEXT */
|
|
5689
|
+
)]),
|
|
5690
|
+
_: 2
|
|
5691
|
+
/* DYNAMIC */
|
|
5692
|
+
|
|
5693
|
+
}, 1032
|
|
5694
|
+
/* PROPS, DYNAMIC_SLOTS */
|
|
5695
|
+
, ["value"]);
|
|
5696
|
+
}), 128
|
|
5697
|
+
/* KEYED_FRAGMENT */
|
|
5698
|
+
))]),
|
|
5699
|
+
_: 1
|
|
5700
|
+
/* STABLE */
|
|
5701
|
+
|
|
5702
|
+
}, 8
|
|
5703
|
+
/* PROPS */
|
|
5704
|
+
, ["modelValue"])]),
|
|
3759
5705
|
_: 1
|
|
3760
5706
|
/* STABLE */
|
|
3761
5707
|
|
|
@@ -3763,72 +5709,304 @@ const __default__ = {
|
|
|
3763
5709
|
_: 1
|
|
3764
5710
|
/* STABLE */
|
|
3765
5711
|
|
|
3766
|
-
},
|
|
3767
|
-
|
|
3768
|
-
,
|
|
5712
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5713
|
+
span: 2
|
|
5714
|
+
}, {
|
|
5715
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_34]),
|
|
5716
|
+
_: 1
|
|
5717
|
+
/* STABLE */
|
|
5718
|
+
|
|
5719
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, {
|
|
5720
|
+
span: 6
|
|
5721
|
+
}, {
|
|
5722
|
+
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, {
|
|
5723
|
+
label: "字体颜色"
|
|
5724
|
+
}, {
|
|
5725
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", null, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
|
|
5726
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color,
|
|
5727
|
+
"onUpdate:modelValue": _cache[25] || (_cache[25] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style.color = $event),
|
|
5728
|
+
"show-alpha": ""
|
|
5729
|
+
}, null, 8
|
|
5730
|
+
/* PROPS */
|
|
5731
|
+
, ["modelValue"])])]),
|
|
5732
|
+
_: 1
|
|
5733
|
+
/* STABLE */
|
|
5734
|
+
|
|
5735
|
+
})]),
|
|
5736
|
+
_: 1
|
|
5737
|
+
/* STABLE */
|
|
5738
|
+
|
|
5739
|
+
})]),
|
|
3769
5740
|
_: 1
|
|
3770
5741
|
/* STABLE */
|
|
3771
5742
|
|
|
3772
|
-
},
|
|
3773
|
-
|
|
3774
|
-
|
|
5743
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
5744
|
+
class: "textarea",
|
|
5745
|
+
label: "文本"
|
|
5746
|
+
}, {
|
|
5747
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("textarea", {
|
|
5748
|
+
class: "textcontent",
|
|
5749
|
+
rows: "12",
|
|
5750
|
+
placeholder: "请输入内容",
|
|
5751
|
+
spellcheck: "false",
|
|
5752
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue = $event),
|
|
5753
|
+
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).style)
|
|
5754
|
+
}, null, 4
|
|
5755
|
+
/* STYLE */
|
|
5756
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vModelText, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelDataform).data.labelValue]])]),
|
|
5757
|
+
_: 1
|
|
5758
|
+
/* STABLE */
|
|
5759
|
+
|
|
5760
|
+
})]),
|
|
3775
5761
|
_: 1
|
|
3776
5762
|
/* STABLE */
|
|
3777
5763
|
|
|
3778
5764
|
}, 8
|
|
3779
5765
|
/* PROPS */
|
|
3780
|
-
, ["model
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
type: "primary"
|
|
5766
|
+
, ["model"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_divider), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_35, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5767
|
+
type: "primary",
|
|
5768
|
+
onClick: addLabel
|
|
3784
5769
|
}, {
|
|
3785
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
3786
|
-
|
|
3787
|
-
|
|
5770
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_36]),
|
|
5771
|
+
_: 1
|
|
5772
|
+
/* STABLE */
|
|
5773
|
+
|
|
5774
|
+
}), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5775
|
+
type: "plain",
|
|
5776
|
+
onClick: clearLabel
|
|
5777
|
+
}, {
|
|
5778
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [_hoisted_37]),
|
|
5779
|
+
_: 1
|
|
5780
|
+
/* STABLE */
|
|
5781
|
+
|
|
5782
|
+
})])])], 512
|
|
5783
|
+
/* NEED_PATCH */
|
|
5784
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isShowText)]])], 2
|
|
5785
|
+
/* CLASS */
|
|
5786
|
+
)], 2
|
|
5787
|
+
/* CLASS */
|
|
5788
|
+
)], 4
|
|
5789
|
+
/* STYLE */
|
|
5790
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_38, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_39, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5791
|
+
onClick: Enlarge,
|
|
5792
|
+
title: "等比例放大",
|
|
5793
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 1 ? 'clickborder' : '')
|
|
5794
|
+
}, {
|
|
5795
|
+
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_icon, null, {
|
|
5796
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ZoomIn))]),
|
|
5797
|
+
_: 1
|
|
5798
|
+
/* STABLE */
|
|
5799
|
+
|
|
5800
|
+
})]),
|
|
3788
5801
|
_: 1
|
|
3789
5802
|
/* STABLE */
|
|
3790
5803
|
|
|
3791
5804
|
}, 8
|
|
3792
5805
|
/* PROPS */
|
|
3793
|
-
, ["
|
|
3794
|
-
onClick:
|
|
3795
|
-
title:
|
|
5806
|
+
, ["class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5807
|
+
onClick: Narrow,
|
|
5808
|
+
title: "等比例缩小",
|
|
5809
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 2 ? 'clickborder' : '')
|
|
3796
5810
|
}, {
|
|
3797
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.
|
|
3798
|
-
|
|
3799
|
-
|
|
5811
|
+
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_icon, null, {
|
|
5812
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.ZoomOut))]),
|
|
5813
|
+
_: 1
|
|
5814
|
+
/* STABLE */
|
|
5815
|
+
|
|
5816
|
+
})]),
|
|
3800
5817
|
_: 1
|
|
3801
5818
|
/* STABLE */
|
|
3802
5819
|
|
|
3803
5820
|
}, 8
|
|
3804
5821
|
/* PROPS */
|
|
3805
|
-
, ["
|
|
3806
|
-
|
|
5822
|
+
, ["class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5823
|
+
onClick: MovePrint,
|
|
5824
|
+
title: "拖拽",
|
|
5825
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(isActive) === 3 ? 'clickborder' : '')
|
|
5826
|
+
}, {
|
|
5827
|
+
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_icon, null, {
|
|
5828
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Rank))]),
|
|
5829
|
+
_: 1
|
|
5830
|
+
/* STABLE */
|
|
5831
|
+
|
|
5832
|
+
})]),
|
|
5833
|
+
_: 1
|
|
5834
|
+
/* STABLE */
|
|
5835
|
+
|
|
5836
|
+
}, 8
|
|
5837
|
+
/* PROPS */
|
|
5838
|
+
, ["class"]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
5839
|
+
onClick: RefreshStatus,
|
|
5840
|
+
title: "恢复"
|
|
5841
|
+
}, {
|
|
5842
|
+
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_icon, null, {
|
|
5843
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Refresh))]),
|
|
5844
|
+
_: 1
|
|
5845
|
+
/* STABLE */
|
|
5846
|
+
|
|
5847
|
+
})]),
|
|
5848
|
+
_: 1
|
|
5849
|
+
/* STABLE */
|
|
5850
|
+
|
|
5851
|
+
})])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5852
|
+
ref_key: "printDiv",
|
|
5853
|
+
ref: printDiv,
|
|
5854
|
+
class: "kq3d-client-print-printDiv"
|
|
5855
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_scrollbar, null, {
|
|
5856
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5857
|
+
ref_key: "printMap",
|
|
5858
|
+
ref: printMap,
|
|
5859
|
+
class: "kq3d-client-print-mapContainerDiv kq3d-client-print-a4VSize",
|
|
5860
|
+
onselectstart: "return false",
|
|
5861
|
+
id: "printMap"
|
|
5862
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_40, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5863
|
+
ref_key: "titleRef",
|
|
5864
|
+
ref: titleRef,
|
|
5865
|
+
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
5866
|
+
boxShadow: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.shadowShow ? (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style.shadowShowBg + ' 5px 2px 6px' : ''
|
|
5867
|
+
}),
|
|
5868
|
+
class: "kq3d-client-print-titleDivStyle"
|
|
5869
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5870
|
+
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).style)
|
|
5871
|
+
}, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.title), 5
|
|
5872
|
+
/* TEXT, STYLE */
|
|
5873
|
+
)], 4
|
|
5874
|
+
/* STYLE */
|
|
5875
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setTitleDataform).data.titleShow]])]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5876
|
+
class: "kq3d-client-print-printContentDiv kq3d-client-print-printborder1",
|
|
5877
|
+
ref_key: "printContentDiv",
|
|
5878
|
+
ref: printContentDiv
|
|
5879
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_41, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
5880
|
+
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scenceImageUrl)
|
|
5881
|
+
}, null, 8
|
|
5882
|
+
/* PROPS */
|
|
5883
|
+
, _hoisted_42)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_scence_view, {
|
|
5884
|
+
target: 'scencePrint',
|
|
5885
|
+
options: __props.options,
|
|
5886
|
+
service: __props.service,
|
|
5887
|
+
scenceInfo: __props.scenceInfo,
|
|
5888
|
+
showToolButtons: __props.showToolButtons,
|
|
5889
|
+
defaultShowLayerNames: __props.defaultShowLayerNames,
|
|
5890
|
+
toolButtonsPosition: __props.toolButtonsPosition,
|
|
5891
|
+
showLogo: __props.showLogo,
|
|
5892
|
+
style: {
|
|
5893
|
+
"position": "relative"
|
|
5894
|
+
}
|
|
5895
|
+
}, {
|
|
5896
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(scalesShow) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq3d_status_bar, {
|
|
5897
|
+
key: 0
|
|
5898
|
+
})) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("图例"), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5899
|
+
class: "kq3d-client-print-legendDiv",
|
|
5900
|
+
onMouseover: setdragCursor,
|
|
5901
|
+
onMousedown: dragTl,
|
|
5902
|
+
id: "divlegendDiv"
|
|
5903
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(legendShow) ? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)(_component_kq_legend, {
|
|
5904
|
+
key: 0,
|
|
5905
|
+
mapTarget: "scencePrint",
|
|
5906
|
+
ref_key: "lengend_ref",
|
|
5907
|
+
ref: lengend_ref
|
|
5908
|
+
}, null, 512
|
|
5909
|
+
/* NEED_PATCH */
|
|
5910
|
+
)) : (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true)], 32
|
|
5911
|
+
/* HYDRATE_EVENTS */
|
|
5912
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("指北针"), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5913
|
+
class: "kq3d-client-print-compassDiv",
|
|
5914
|
+
onMouseover: setdragCursor,
|
|
5915
|
+
onMousedown: dragTl,
|
|
5916
|
+
id: "divcompassDiv"
|
|
5917
|
+
}, [_hoisted_43, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
5918
|
+
class: "kq3d-client-print-compassImgStyle",
|
|
5919
|
+
src: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(const_image_.COMMPASS_URL)
|
|
5920
|
+
}, null, 8
|
|
5921
|
+
/* PROPS */
|
|
5922
|
+
, _hoisted_44)], 544
|
|
5923
|
+
/* HYDRATE_EVENTS, NEED_PATCH */
|
|
5924
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(compassShow)]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)(" 文本标注 "), ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(true), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)(external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.Fragment, null, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.renderList)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(setLabelData).value, item => {
|
|
5925
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)(((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
|
|
5926
|
+
id: item.data.dataId,
|
|
5927
|
+
key: item.data.dataId,
|
|
5928
|
+
class: "kq3d-client-print-labelDivStyle",
|
|
5929
|
+
onMouseover: setdragCursor,
|
|
5930
|
+
onMousedown: dragTl
|
|
5931
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5932
|
+
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)(item.style)
|
|
5933
|
+
}, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(item.data.labelValue), 5
|
|
5934
|
+
/* TEXT, STYLE */
|
|
5935
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
5936
|
+
class: "closeIconDiv",
|
|
5937
|
+
onClick: $event => delLabel(item.data.dataId),
|
|
5938
|
+
style: {
|
|
5939
|
+
"position": "absolute",
|
|
5940
|
+
"top": "0px",
|
|
5941
|
+
"right": "0px",
|
|
5942
|
+
"display": "none"
|
|
5943
|
+
}
|
|
5944
|
+
}, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_icon, {
|
|
5945
|
+
size: 24,
|
|
5946
|
+
style: {
|
|
5947
|
+
"cursor": "Pointer",
|
|
5948
|
+
"color": "#da0000"
|
|
5949
|
+
},
|
|
5950
|
+
title: "关闭"
|
|
5951
|
+
}, {
|
|
5952
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(icons_vue_.Close))]),
|
|
5953
|
+
_: 1
|
|
5954
|
+
/* STABLE */
|
|
5955
|
+
|
|
5956
|
+
})], 8
|
|
5957
|
+
/* PROPS */
|
|
5958
|
+
, _hoisted_46)], 40
|
|
5959
|
+
/* PROPS, HYDRATE_EVENTS */
|
|
5960
|
+
, _hoisted_45)), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, item.data.isShow]]);
|
|
5961
|
+
}), 128
|
|
5962
|
+
/* KEYED_FRAGMENT */
|
|
5963
|
+
))]),
|
|
5964
|
+
_: 1
|
|
5965
|
+
/* STABLE */
|
|
5966
|
+
|
|
5967
|
+
}, 8
|
|
5968
|
+
/* PROPS */
|
|
5969
|
+
, ["options", "service", "scenceInfo", "showToolButtons", "defaultShowLayerNames", "toolButtonsPosition", "showLogo"])], 512
|
|
5970
|
+
/* NEED_PATCH */
|
|
5971
|
+
), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_47, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_48, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "日期:" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(systemTime)), 1
|
|
5972
|
+
/* TEXT */
|
|
5973
|
+
)]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_49, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("span", null, "公司:" + (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(companyName)), 1
|
|
5974
|
+
/* TEXT */
|
|
5975
|
+
)])])], 512
|
|
5976
|
+
/* NEED_PATCH */
|
|
5977
|
+
)]),
|
|
5978
|
+
_: 1
|
|
5979
|
+
/* STABLE */
|
|
5980
|
+
|
|
5981
|
+
})], 512
|
|
5982
|
+
/* NEED_PATCH */
|
|
5983
|
+
)], 512
|
|
5984
|
+
/* NEED_PATCH */
|
|
3807
5985
|
);
|
|
3808
5986
|
};
|
|
3809
5987
|
}
|
|
3810
5988
|
|
|
3811
5989
|
}));
|
|
3812
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
5990
|
+
;// CONCATENATED MODULE: ./src/webgl/clientPrint/ClientPrint.vue?vue&type=script&setup=true&lang=js
|
|
3813
5991
|
|
|
3814
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
5992
|
+
;// CONCATENATED MODULE: ./src/webgl/clientPrint/ClientPrint.vue
|
|
3815
5993
|
|
|
3816
5994
|
|
|
3817
5995
|
|
|
3818
|
-
const __exports__ =
|
|
5996
|
+
const __exports__ = ClientPrintvue_type_script_setup_true_lang_js;
|
|
3819
5997
|
|
|
3820
|
-
/* harmony default export */ var
|
|
5998
|
+
/* harmony default export */ var ClientPrint = (__exports__);
|
|
3821
5999
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
3822
6000
|
var init_js_ = __webpack_require__(5406);
|
|
3823
6001
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
3824
|
-
;// CONCATENATED MODULE: ./src/webgl/
|
|
6002
|
+
;// CONCATENATED MODULE: ./src/webgl/clientPrint/index.js
|
|
3825
6003
|
|
|
3826
6004
|
|
|
3827
6005
|
|
|
3828
6006
|
|
|
3829
|
-
|
|
6007
|
+
ClientPrint.install = (Vue, opts) => {
|
|
3830
6008
|
init_js_default()(Vue, opts);
|
|
3831
|
-
Vue.component(
|
|
6009
|
+
Vue.component(ClientPrint.name, ClientPrint);
|
|
3832
6010
|
};
|
|
3833
6011
|
|
|
3834
6012
|
|
|
@@ -4472,28 +6650,42 @@ Compass.install = (Vue, opts) => {
|
|
|
4472
6650
|
|
|
4473
6651
|
/***/ }),
|
|
4474
6652
|
|
|
4475
|
-
/***/
|
|
6653
|
+
/***/ 7739:
|
|
4476
6654
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4477
6655
|
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
6656
|
+
|
|
6657
|
+
// EXPORTS
|
|
6658
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
6659
|
+
"default": function() { return /* reexport */ ExcavateFillAnalysis; }
|
|
6660
|
+
});
|
|
6661
|
+
|
|
6662
|
+
// UNUSED EXPORTS: ExcavateFillAnalysisViewModel
|
|
6663
|
+
|
|
6664
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
6665
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
6666
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
6667
|
+
var gis_utils_ = __webpack_require__(826);
|
|
6668
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
6669
|
+
var defineProperty = __webpack_require__(8270);
|
|
6670
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
6671
|
+
var message = __webpack_require__(909);
|
|
6672
|
+
;// CONCATENATED MODULE: ./src/webgl/excavatefillanalysis/ExcavateFillAnalysisViewModel.js
|
|
4482
6673
|
|
|
4483
6674
|
//填挖方分析逻辑类
|
|
6675
|
+
|
|
4484
6676
|
class ExcavateFillAnalysisViewModel {
|
|
4485
6677
|
//填挖方分析三维对象
|
|
4486
6678
|
//绘制管理对象
|
|
4487
6679
|
//填挖方分析存储参数对象
|
|
4488
6680
|
//绘制完成监听事件
|
|
4489
6681
|
constructor(scenceView, options, callback) {
|
|
4490
|
-
(0,
|
|
6682
|
+
(0,defineProperty/* default */.Z)(this, "_excavateFillAnalysis", null);
|
|
4491
6683
|
|
|
4492
|
-
(0,
|
|
6684
|
+
(0,defineProperty/* default */.Z)(this, "_drawManager", null);
|
|
4493
6685
|
|
|
4494
|
-
(0,
|
|
6686
|
+
(0,defineProperty/* default */.Z)(this, "_options", null);
|
|
4495
6687
|
|
|
4496
|
-
(0,
|
|
6688
|
+
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
4497
6689
|
|
|
4498
6690
|
options.viewer = scenceView._viewer;
|
|
4499
6691
|
options.viewer.scene.globe.depthTestAgainstTerrain = true;
|
|
@@ -4541,11 +6733,21 @@ class ExcavateFillAnalysisViewModel {
|
|
|
4541
6733
|
start() {
|
|
4542
6734
|
// 判断是否添加了地形
|
|
4543
6735
|
if (this._options.viewer.terrainProvider.availability) {
|
|
4544
|
-
this.
|
|
4545
|
-
|
|
4546
|
-
|
|
6736
|
+
if (this._options.viewer.terrainProvider instanceof Cesium.CesiumTerrainProvider) {
|
|
6737
|
+
this._drawManager.startDraw("polygon", {
|
|
6738
|
+
clampToGround: true
|
|
6739
|
+
});
|
|
6740
|
+
} else {
|
|
6741
|
+
(0,message/* default */.Z)({
|
|
6742
|
+
message: "只支持STK类型的地形分析!",
|
|
6743
|
+
type: "warning"
|
|
6744
|
+
});
|
|
6745
|
+
}
|
|
4547
6746
|
} else {
|
|
4548
|
-
|
|
6747
|
+
(0,message/* default */.Z)({
|
|
6748
|
+
message: "请加载地形后分析!",
|
|
6749
|
+
type: "warning"
|
|
6750
|
+
});
|
|
4549
6751
|
}
|
|
4550
6752
|
} //清除全部结果
|
|
4551
6753
|
|
|
@@ -4594,26 +6796,6 @@ class ExcavateFillAnalysisViewModel {
|
|
|
4594
6796
|
}
|
|
4595
6797
|
|
|
4596
6798
|
}
|
|
4597
|
-
|
|
4598
|
-
/***/ }),
|
|
4599
|
-
|
|
4600
|
-
/***/ 6722:
|
|
4601
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
// EXPORTS
|
|
4605
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
4606
|
-
"default": function() { return /* reexport */ ExcavateFillAnalysis; }
|
|
4607
|
-
});
|
|
4608
|
-
|
|
4609
|
-
// UNUSED EXPORTS: ExcavateFillAnalysisViewModel
|
|
4610
|
-
|
|
4611
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
4612
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
4613
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
4614
|
-
var gis_utils_ = __webpack_require__(826);
|
|
4615
|
-
// EXTERNAL MODULE: ./src/webgl/excavatefillanalysis/ExcavateFillAnalysisViewModel.js
|
|
4616
|
-
var ExcavateFillAnalysisViewModel = __webpack_require__(5183);
|
|
4617
6799
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
4618
6800
|
var client_icons_vue_ = __webpack_require__(348);
|
|
4619
6801
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -4742,7 +6924,7 @@ const __default__ = {
|
|
|
4742
6924
|
cutColor: formItem.excavateColor,
|
|
4743
6925
|
fillColor: formItem.fillColor
|
|
4744
6926
|
};
|
|
4745
|
-
viewModel = new ExcavateFillAnalysisViewModel
|
|
6927
|
+
viewModel = new ExcavateFillAnalysisViewModel(scenceView, options, function () {
|
|
4746
6928
|
setTimeout(() => {
|
|
4747
6929
|
showResult.value = true;
|
|
4748
6930
|
const cutVolumn = viewModel._excavateFillAnalysis.cutVolumn;
|
|
@@ -6617,10 +8799,13 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
6617
8799
|
var defineProperty = __webpack_require__(8270);
|
|
6618
8800
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
6619
8801
|
var const_image_ = __webpack_require__(9702);
|
|
8802
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
8803
|
+
var message = __webpack_require__(909);
|
|
6620
8804
|
;// CONCATENATED MODULE: ./src/webgl/floodanalysis/FloodAnalysisViewModel.js
|
|
6621
8805
|
|
|
6622
8806
|
//地形淹没分析逻辑类
|
|
6623
8807
|
|
|
8808
|
+
|
|
6624
8809
|
class FloodAnalysisViewModel {
|
|
6625
8810
|
//地形淹没三维对象
|
|
6626
8811
|
//模型淹没三维对象
|
|
@@ -6723,11 +8908,21 @@ class FloodAnalysisViewModel {
|
|
|
6723
8908
|
// 判断是否添加了地形
|
|
6724
8909
|
if (this._mode === 0) {
|
|
6725
8910
|
if (this._floodModelAnalysis.viewer.terrainProvider.availability) {
|
|
6726
|
-
this.
|
|
8911
|
+
if (this._floodModelAnalysis.viewer.terrainProvider instanceof Cesium.CesiumTerrainProvider) {
|
|
8912
|
+
this.clear();
|
|
6727
8913
|
|
|
6728
|
-
|
|
8914
|
+
this._measureHandler.startMeasure(Cesium.Kq3dMeasureMode.HorizontalArea);
|
|
8915
|
+
} else {
|
|
8916
|
+
(0,message/* default */.Z)({
|
|
8917
|
+
message: "只支持STK类型的地形分析!",
|
|
8918
|
+
type: "warning"
|
|
8919
|
+
});
|
|
8920
|
+
}
|
|
6729
8921
|
} else {
|
|
6730
|
-
|
|
8922
|
+
(0,message/* default */.Z)({
|
|
8923
|
+
message: "请加载地形后分析!",
|
|
8924
|
+
type: "warning"
|
|
8925
|
+
});
|
|
6731
8926
|
}
|
|
6732
8927
|
} else if (this._mode === 1) {
|
|
6733
8928
|
var modelFlag = false;
|
|
@@ -6745,7 +8940,10 @@ class FloodAnalysisViewModel {
|
|
|
6745
8940
|
|
|
6746
8941
|
this._measureHandler.startMeasure(Cesium.Kq3dMeasureMode.HorizontalArea);
|
|
6747
8942
|
} else {
|
|
6748
|
-
|
|
8943
|
+
(0,message/* default */.Z)({
|
|
8944
|
+
message: "请添加模型后分析!",
|
|
8945
|
+
type: "warning"
|
|
8946
|
+
});
|
|
6749
8947
|
}
|
|
6750
8948
|
}
|
|
6751
8949
|
} //清除全部结果
|
|
@@ -7548,15 +9746,34 @@ FloodAnalysis.install = (Vue, opts) => {
|
|
|
7548
9746
|
|
|
7549
9747
|
/***/ }),
|
|
7550
9748
|
|
|
7551
|
-
/***/
|
|
9749
|
+
/***/ 7719:
|
|
7552
9750
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7553
9751
|
|
|
7554
|
-
|
|
7555
|
-
|
|
7556
|
-
|
|
7557
|
-
|
|
9752
|
+
|
|
9753
|
+
// EXPORTS
|
|
9754
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
9755
|
+
"default": function() { return /* reexport */ GPUSpatialQuery; }
|
|
9756
|
+
});
|
|
9757
|
+
|
|
9758
|
+
// UNUSED EXPORTS: GPUSpatialQueryViewModel
|
|
9759
|
+
|
|
9760
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
9761
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
9762
|
+
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
9763
|
+
var icons_vue_ = __webpack_require__(8422);
|
|
9764
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
9765
|
+
var gis_utils_ = __webpack_require__(826);
|
|
9766
|
+
;// CONCATENATED MODULE: external "xe-utils"
|
|
9767
|
+
var external_xe_utils_namespaceObject = require("xe-utils");
|
|
9768
|
+
var external_xe_utils_default = /*#__PURE__*/__webpack_require__.n(external_xe_utils_namespaceObject);
|
|
9769
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
9770
|
+
var defineProperty = __webpack_require__(8270);
|
|
9771
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
9772
|
+
var message = __webpack_require__(909);
|
|
9773
|
+
;// CONCATENATED MODULE: ./src/webgl/gpuspatialquery/GPUSpatialQueryViewModel.js
|
|
7558
9774
|
|
|
7559
9775
|
//GPU空间查询逻辑类
|
|
9776
|
+
|
|
7560
9777
|
class GPUSpatialQueryViewModel {
|
|
7561
9778
|
//GPU查询三维对象
|
|
7562
9779
|
//绘制管理对象
|
|
@@ -7566,19 +9783,19 @@ class GPUSpatialQueryViewModel {
|
|
|
7566
9783
|
//绘制后的查询事件
|
|
7567
9784
|
//绘制完成监听事件
|
|
7568
9785
|
constructor(scenceView, options) {
|
|
7569
|
-
(0,
|
|
9786
|
+
(0,defineProperty/* default */.Z)(this, "_gpuSpatialQuery", null);
|
|
7570
9787
|
|
|
7571
|
-
(0,
|
|
9788
|
+
(0,defineProperty/* default */.Z)(this, "_drawManager", null);
|
|
7572
9789
|
|
|
7573
|
-
(0,
|
|
9790
|
+
(0,defineProperty/* default */.Z)(this, "_geometry", null);
|
|
7574
9791
|
|
|
7575
|
-
(0,
|
|
9792
|
+
(0,defineProperty/* default */.Z)(this, "_center", null);
|
|
7576
9793
|
|
|
7577
|
-
(0,
|
|
9794
|
+
(0,defineProperty/* default */.Z)(this, "_options", null);
|
|
7578
9795
|
|
|
7579
|
-
(0,
|
|
9796
|
+
(0,defineProperty/* default */.Z)(this, "finishedQuery", null);
|
|
7580
9797
|
|
|
7581
|
-
(0,
|
|
9798
|
+
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
7582
9799
|
|
|
7583
9800
|
options.viewer = scenceView._viewer;
|
|
7584
9801
|
options.viewer.scene.globe.depthTestAgainstTerrain = true;
|
|
@@ -7666,7 +9883,10 @@ class GPUSpatialQueryViewModel {
|
|
|
7666
9883
|
image: null
|
|
7667
9884
|
});
|
|
7668
9885
|
} else {
|
|
7669
|
-
|
|
9886
|
+
(0,message/* default */.Z)({
|
|
9887
|
+
message: "请添加模型后分析!",
|
|
9888
|
+
type: "warning"
|
|
9889
|
+
});
|
|
7670
9890
|
}
|
|
7671
9891
|
} // 开始查询
|
|
7672
9892
|
|
|
@@ -7846,31 +10066,6 @@ class GPUSpatialQueryViewModel {
|
|
|
7846
10066
|
}
|
|
7847
10067
|
|
|
7848
10068
|
}
|
|
7849
|
-
|
|
7850
|
-
/***/ }),
|
|
7851
|
-
|
|
7852
|
-
/***/ 8380:
|
|
7853
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
7854
|
-
|
|
7855
|
-
|
|
7856
|
-
// EXPORTS
|
|
7857
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
7858
|
-
"default": function() { return /* reexport */ GPUSpatialQuery; }
|
|
7859
|
-
});
|
|
7860
|
-
|
|
7861
|
-
// UNUSED EXPORTS: GPUSpatialQueryViewModel
|
|
7862
|
-
|
|
7863
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
7864
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
7865
|
-
// EXTERNAL MODULE: external "@element-plus/icons-vue"
|
|
7866
|
-
var icons_vue_ = __webpack_require__(8422);
|
|
7867
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
7868
|
-
var gis_utils_ = __webpack_require__(826);
|
|
7869
|
-
;// CONCATENATED MODULE: external "xe-utils"
|
|
7870
|
-
var external_xe_utils_namespaceObject = require("xe-utils");
|
|
7871
|
-
var external_xe_utils_default = /*#__PURE__*/__webpack_require__.n(external_xe_utils_namespaceObject);
|
|
7872
|
-
// EXTERNAL MODULE: ./src/webgl/gpuspatialquery/GPUSpatialQueryViewModel.js
|
|
7873
|
-
var GPUSpatialQueryViewModel = __webpack_require__(7775);
|
|
7874
10069
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
7875
10070
|
var util_ = __webpack_require__(9519);
|
|
7876
10071
|
;// CONCATENATED MODULE: ./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/dist/index.js??ruleSet[0]!./src/webgl/gpuspatialquery/GPUSpatialQuery.vue?vue&type=script&setup=true&lang=js
|
|
@@ -8009,7 +10204,7 @@ const __default__ = {
|
|
|
8009
10204
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
8010
10205
|
if (scenceView) {
|
|
8011
10206
|
language.value = scenceView._language;
|
|
8012
|
-
viewModel = new GPUSpatialQueryViewModel
|
|
10207
|
+
viewModel = new GPUSpatialQueryViewModel(scenceView, {
|
|
8013
10208
|
volumeType: formItem.volumeType,
|
|
8014
10209
|
positionMode: formItem.positionMode,
|
|
8015
10210
|
scale: formItem.scale,
|
|
@@ -8743,10 +10938,13 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
8743
10938
|
var defineProperty = __webpack_require__(8270);
|
|
8744
10939
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
8745
10940
|
var const_image_ = __webpack_require__(9702);
|
|
10941
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
10942
|
+
var message = __webpack_require__(909);
|
|
8746
10943
|
;// CONCATENATED MODULE: ./src/webgl/isolineanalysis/IsolineAnalysisViewModel.js
|
|
8747
10944
|
|
|
8748
10945
|
//等值线分析逻辑类
|
|
8749
10946
|
|
|
10947
|
+
|
|
8750
10948
|
class IsolineAnalysisViewModel {
|
|
8751
10949
|
//等值线分析三维对象
|
|
8752
10950
|
//等高面高度区间
|
|
@@ -8963,7 +11161,10 @@ class IsolineAnalysisViewModel {
|
|
|
8963
11161
|
clampToGround: true
|
|
8964
11162
|
});
|
|
8965
11163
|
} else {
|
|
8966
|
-
|
|
11164
|
+
(0,message/* default */.Z)({
|
|
11165
|
+
message: "请添加模型后分析!",
|
|
11166
|
+
type: "warning"
|
|
11167
|
+
});
|
|
8967
11168
|
}
|
|
8968
11169
|
} //清除全部结果
|
|
8969
11170
|
|
|
@@ -12187,15 +14388,29 @@ Measure.install = (Vue, opts) => {
|
|
|
12187
14388
|
|
|
12188
14389
|
/***/ }),
|
|
12189
14390
|
|
|
12190
|
-
/***/
|
|
14391
|
+
/***/ 9089:
|
|
12191
14392
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12192
14393
|
|
|
12193
|
-
|
|
12194
|
-
|
|
12195
|
-
|
|
12196
|
-
|
|
14394
|
+
|
|
14395
|
+
// EXPORTS
|
|
14396
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
14397
|
+
"default": function() { return /* reexport */ ModelSelect; }
|
|
14398
|
+
});
|
|
14399
|
+
|
|
14400
|
+
// UNUSED EXPORTS: ModelSelectViewModel
|
|
14401
|
+
|
|
14402
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
14403
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
14404
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
14405
|
+
var gis_utils_ = __webpack_require__(826);
|
|
14406
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
14407
|
+
var defineProperty = __webpack_require__(8270);
|
|
14408
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
14409
|
+
var message = __webpack_require__(909);
|
|
14410
|
+
;// CONCATENATED MODULE: ./src/webgl/modelselect/ModelSelectViewModel.js
|
|
12197
14411
|
|
|
12198
14412
|
//模型拾取逻辑类
|
|
14413
|
+
|
|
12199
14414
|
class ModelSelectViewModel {
|
|
12200
14415
|
//三维viewer对象
|
|
12201
14416
|
//屏幕空间事件处理程序三维对象
|
|
@@ -12203,15 +14418,15 @@ class ModelSelectViewModel {
|
|
|
12203
14418
|
//高亮三维对象
|
|
12204
14419
|
//高亮颜色
|
|
12205
14420
|
constructor(scenceView, pickCallFunc) {
|
|
12206
|
-
(0,
|
|
14421
|
+
(0,defineProperty/* default */.Z)(this, "_viewer", null);
|
|
12207
14422
|
|
|
12208
|
-
(0,
|
|
14423
|
+
(0,defineProperty/* default */.Z)(this, "_handler", null);
|
|
12209
14424
|
|
|
12210
|
-
(0,
|
|
14425
|
+
(0,defineProperty/* default */.Z)(this, "_isPick", false);
|
|
12211
14426
|
|
|
12212
|
-
(0,
|
|
14427
|
+
(0,defineProperty/* default */.Z)(this, "_highlight", null);
|
|
12213
14428
|
|
|
12214
|
-
(0,
|
|
14429
|
+
(0,defineProperty/* default */.Z)(this, "_highlightColor", "#FF0000");
|
|
12215
14430
|
|
|
12216
14431
|
this._viewer = scenceView._viewer;
|
|
12217
14432
|
this._drawManager = scenceView._drawManager;
|
|
@@ -12282,7 +14497,10 @@ class ModelSelectViewModel {
|
|
|
12282
14497
|
this.setCursor("crosshair");
|
|
12283
14498
|
this._isPick = true;
|
|
12284
14499
|
} else {
|
|
12285
|
-
|
|
14500
|
+
(0,message/* default */.Z)({
|
|
14501
|
+
message: "请添加模型后拾取!",
|
|
14502
|
+
type: "warning"
|
|
14503
|
+
});
|
|
12286
14504
|
}
|
|
12287
14505
|
}
|
|
12288
14506
|
|
|
@@ -12310,26 +14528,6 @@ class ModelSelectViewModel {
|
|
|
12310
14528
|
}
|
|
12311
14529
|
|
|
12312
14530
|
}
|
|
12313
|
-
|
|
12314
|
-
/***/ }),
|
|
12315
|
-
|
|
12316
|
-
/***/ 1134:
|
|
12317
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12318
|
-
|
|
12319
|
-
|
|
12320
|
-
// EXPORTS
|
|
12321
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
12322
|
-
"default": function() { return /* reexport */ ModelSelect; }
|
|
12323
|
-
});
|
|
12324
|
-
|
|
12325
|
-
// UNUSED EXPORTS: ModelSelectViewModel
|
|
12326
|
-
|
|
12327
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
12328
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
12329
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
12330
|
-
var gis_utils_ = __webpack_require__(826);
|
|
12331
|
-
// EXTERNAL MODULE: ./src/webgl/modelselect/ModelSelectViewModel.js
|
|
12332
|
-
var ModelSelectViewModel = __webpack_require__(5394);
|
|
12333
14531
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
12334
14532
|
var client_icons_vue_ = __webpack_require__(348);
|
|
12335
14533
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -12446,7 +14644,7 @@ const __default__ = {
|
|
|
12446
14644
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
12447
14645
|
if (scenceView) {
|
|
12448
14646
|
language.value = scenceView._language;
|
|
12449
|
-
viewModel = new ModelSelectViewModel
|
|
14647
|
+
viewModel = new ModelSelectViewModel(scenceView, pickCallFunc);
|
|
12450
14648
|
viewModel._highlightColor = props.highlightColor;
|
|
12451
14649
|
}
|
|
12452
14650
|
});
|
|
@@ -13741,15 +15939,29 @@ ParticleEffect.install = (Vue, opts) => {
|
|
|
13741
15939
|
|
|
13742
15940
|
/***/ }),
|
|
13743
15941
|
|
|
13744
|
-
/***/
|
|
15942
|
+
/***/ 9736:
|
|
13745
15943
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13746
15944
|
|
|
13747
|
-
|
|
13748
|
-
|
|
13749
|
-
|
|
13750
|
-
|
|
15945
|
+
|
|
15946
|
+
// EXPORTS
|
|
15947
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
15948
|
+
"default": function() { return /* reexport */ PlaneClip; }
|
|
15949
|
+
});
|
|
15950
|
+
|
|
15951
|
+
// UNUSED EXPORTS: PlaneClipViewModel
|
|
15952
|
+
|
|
15953
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
15954
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
15955
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
15956
|
+
var gis_utils_ = __webpack_require__(826);
|
|
15957
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
15958
|
+
var defineProperty = __webpack_require__(8270);
|
|
15959
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
15960
|
+
var message = __webpack_require__(909);
|
|
15961
|
+
;// CONCATENATED MODULE: ./src/webgl/planeclip/PlaneClipViewModel.js
|
|
13751
15962
|
|
|
13752
15963
|
//平面裁剪逻辑类
|
|
15964
|
+
|
|
13753
15965
|
class PlaneClipViewModel {
|
|
13754
15966
|
//三维viewer对象
|
|
13755
15967
|
//平面裁剪存储参数对象
|
|
@@ -13757,11 +15969,11 @@ class PlaneClipViewModel {
|
|
|
13757
15969
|
//绘制管理对象
|
|
13758
15970
|
//绘制完成事件监听
|
|
13759
15971
|
constructor(scenceView, options) {
|
|
13760
|
-
(0,
|
|
15972
|
+
(0,defineProperty/* default */.Z)(this, "_viewer", null);
|
|
13761
15973
|
|
|
13762
|
-
(0,
|
|
15974
|
+
(0,defineProperty/* default */.Z)(this, "_options", {});
|
|
13763
15975
|
|
|
13764
|
-
(0,
|
|
15976
|
+
(0,defineProperty/* default */.Z)(this, "_defaultOptions", {
|
|
13765
15977
|
//默认参数对象
|
|
13766
15978
|
x: 0,
|
|
13767
15979
|
y: 0,
|
|
@@ -13786,11 +15998,11 @@ class PlaneClipViewModel {
|
|
|
13786
15998
|
paddingStrokeSpace: 7.0
|
|
13787
15999
|
});
|
|
13788
16000
|
|
|
13789
|
-
(0,
|
|
16001
|
+
(0,defineProperty/* default */.Z)(this, "_planeclipAnalysis", null);
|
|
13790
16002
|
|
|
13791
|
-
(0,
|
|
16003
|
+
(0,defineProperty/* default */.Z)(this, "_drawManager", null);
|
|
13792
16004
|
|
|
13793
|
-
(0,
|
|
16005
|
+
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
13794
16006
|
|
|
13795
16007
|
this._options = Object.assign({}, options, this._defaultOptions);
|
|
13796
16008
|
this._viewer = scenceView._viewer; // this._viewer.enabledFXAA = true;
|
|
@@ -13852,7 +16064,10 @@ class PlaneClipViewModel {
|
|
|
13852
16064
|
image: null
|
|
13853
16065
|
});
|
|
13854
16066
|
} else {
|
|
13855
|
-
|
|
16067
|
+
(0,message/* default */.Z)({
|
|
16068
|
+
message: "请添加模型后裁剪!",
|
|
16069
|
+
type: "warning"
|
|
16070
|
+
});
|
|
13856
16071
|
}
|
|
13857
16072
|
} //清除全部
|
|
13858
16073
|
|
|
@@ -13923,26 +16138,6 @@ class PlaneClipViewModel {
|
|
|
13923
16138
|
}
|
|
13924
16139
|
|
|
13925
16140
|
}
|
|
13926
|
-
|
|
13927
|
-
/***/ }),
|
|
13928
|
-
|
|
13929
|
-
/***/ 5265:
|
|
13930
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13931
|
-
|
|
13932
|
-
|
|
13933
|
-
// EXPORTS
|
|
13934
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
13935
|
-
"default": function() { return /* reexport */ PlaneClip; }
|
|
13936
|
-
});
|
|
13937
|
-
|
|
13938
|
-
// UNUSED EXPORTS: PlaneClipViewModel
|
|
13939
|
-
|
|
13940
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
13941
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
13942
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
13943
|
-
var gis_utils_ = __webpack_require__(826);
|
|
13944
|
-
// EXTERNAL MODULE: ./src/webgl/planeclip/PlaneClipViewModel.js
|
|
13945
|
-
var PlaneClipViewModel = __webpack_require__(5673);
|
|
13946
16141
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
13947
16142
|
var client_icons_vue_ = __webpack_require__(348);
|
|
13948
16143
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -14063,7 +16258,7 @@ const __default__ = {
|
|
|
14063
16258
|
boxEnable: formItem.boxEnable,
|
|
14064
16259
|
distance: formItem.clipDistance
|
|
14065
16260
|
};
|
|
14066
|
-
viewModel = new PlaneClipViewModel
|
|
16261
|
+
viewModel = new PlaneClipViewModel(scenceView, options);
|
|
14067
16262
|
}
|
|
14068
16263
|
});
|
|
14069
16264
|
setTimeout(() => {
|
|
@@ -16714,21 +18909,35 @@ Screenshot.install = (Vue, opts) => {
|
|
|
16714
18909
|
|
|
16715
18910
|
/***/ }),
|
|
16716
18911
|
|
|
16717
|
-
/***/
|
|
18912
|
+
/***/ 8449:
|
|
16718
18913
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16719
18914
|
|
|
16720
|
-
|
|
16721
|
-
|
|
16722
|
-
|
|
16723
|
-
|
|
18915
|
+
|
|
18916
|
+
// EXPORTS
|
|
18917
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
18918
|
+
"default": function() { return /* reexport */ ShadowAnalysis; }
|
|
18919
|
+
});
|
|
18920
|
+
|
|
18921
|
+
// UNUSED EXPORTS: ShadowAnalysisViewModel
|
|
18922
|
+
|
|
18923
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
18924
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
18925
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
18926
|
+
var gis_utils_ = __webpack_require__(826);
|
|
18927
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
18928
|
+
var defineProperty = __webpack_require__(8270);
|
|
18929
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
18930
|
+
var message = __webpack_require__(909);
|
|
18931
|
+
;// CONCATENATED MODULE: ./src/webgl/shadowanalysis/ShadowAnalysisViewModel.js
|
|
16724
18932
|
|
|
16725
18933
|
// 分析逻辑类
|
|
18934
|
+
|
|
16726
18935
|
class ShadowAnalysisViewModel {
|
|
16727
18936
|
//阴影分析三维对象
|
|
16728
18937
|
constructor(scenceView, viewModel) {
|
|
16729
|
-
(0,
|
|
18938
|
+
(0,defineProperty/* default */.Z)(this, "_shadowAnalysis", null);
|
|
16730
18939
|
|
|
16731
|
-
(0,
|
|
18940
|
+
(0,defineProperty/* default */.Z)(this, "_globaOptions", {
|
|
16732
18941
|
//全局参数
|
|
16733
18942
|
viewer: null,
|
|
16734
18943
|
_drawManager: null
|
|
@@ -16805,7 +19014,10 @@ class ShadowAnalysisViewModel {
|
|
|
16805
19014
|
clampToGround: true
|
|
16806
19015
|
});
|
|
16807
19016
|
} else {
|
|
16808
|
-
|
|
19017
|
+
(0,message/* default */.Z)({
|
|
19018
|
+
message: "请添加模型后分析!",
|
|
19019
|
+
type: "warning"
|
|
19020
|
+
});
|
|
16809
19021
|
}
|
|
16810
19022
|
} // 阴影分析
|
|
16811
19023
|
|
|
@@ -16949,26 +19161,6 @@ class ShadowAnalysisViewModel {
|
|
|
16949
19161
|
}
|
|
16950
19162
|
|
|
16951
19163
|
}
|
|
16952
|
-
|
|
16953
|
-
/***/ }),
|
|
16954
|
-
|
|
16955
|
-
/***/ 3548:
|
|
16956
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16957
|
-
|
|
16958
|
-
|
|
16959
|
-
// EXPORTS
|
|
16960
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
16961
|
-
"default": function() { return /* reexport */ ShadowAnalysis; }
|
|
16962
|
-
});
|
|
16963
|
-
|
|
16964
|
-
// UNUSED EXPORTS: ShadowAnalysisViewModel
|
|
16965
|
-
|
|
16966
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
16967
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
16968
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
16969
|
-
var gis_utils_ = __webpack_require__(826);
|
|
16970
|
-
// EXTERNAL MODULE: ./src/webgl/shadowanalysis/ShadowAnalysisViewModel.js
|
|
16971
|
-
var ShadowAnalysisViewModel = __webpack_require__(4167);
|
|
16972
19164
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
16973
19165
|
var const_image_ = __webpack_require__(9702);
|
|
16974
19166
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
@@ -17159,7 +19351,7 @@ const __default__ = {
|
|
|
17159
19351
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
17160
19352
|
if (scenceView) {
|
|
17161
19353
|
language.value = scenceView._language;
|
|
17162
|
-
viewModel = new ShadowAnalysisViewModel
|
|
19354
|
+
viewModel = new ShadowAnalysisViewModel(scenceView, {
|
|
17163
19355
|
showVoxel: formItem.showBuilding,
|
|
17164
19356
|
// 显示体素
|
|
17165
19357
|
baseHeight: formItem.baseHeight,
|
|
@@ -18539,15 +20731,29 @@ SightlineAnalysis.install = (Vue, opts) => {
|
|
|
18539
20731
|
|
|
18540
20732
|
/***/ }),
|
|
18541
20733
|
|
|
18542
|
-
/***/
|
|
20734
|
+
/***/ 421:
|
|
18543
20735
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
18544
20736
|
|
|
18545
|
-
|
|
18546
|
-
|
|
18547
|
-
|
|
18548
|
-
|
|
20737
|
+
|
|
20738
|
+
// EXPORTS
|
|
20739
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
20740
|
+
"default": function() { return /* reexport */ SkylineAnalysis; }
|
|
20741
|
+
});
|
|
20742
|
+
|
|
20743
|
+
// UNUSED EXPORTS: SkylineAnalysisViewModel
|
|
20744
|
+
|
|
20745
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
20746
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
20747
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
20748
|
+
var gis_utils_ = __webpack_require__(826);
|
|
20749
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
20750
|
+
var defineProperty = __webpack_require__(8270);
|
|
20751
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
20752
|
+
var message = __webpack_require__(909);
|
|
20753
|
+
;// CONCATENATED MODULE: ./src/webgl/skylineanalysis/SkylineAnalysisViewModel.js
|
|
18549
20754
|
|
|
18550
20755
|
//天际线分析逻辑类
|
|
20756
|
+
|
|
18551
20757
|
class SkylineAnalysisViewModel {
|
|
18552
20758
|
/**
|
|
18553
20759
|
* 天际线分析逻辑类
|
|
@@ -18564,15 +20770,15 @@ class SkylineAnalysisViewModel {
|
|
|
18564
20770
|
* @param {*} option 天际线分析参数对象
|
|
18565
20771
|
*/
|
|
18566
20772
|
constructor(viewer, option) {
|
|
18567
|
-
(0,
|
|
20773
|
+
(0,defineProperty/* default */.Z)(this, "_skylineAnalysis", null);
|
|
18568
20774
|
|
|
18569
|
-
(0,
|
|
20775
|
+
(0,defineProperty/* default */.Z)(this, "_skylineAnalysisChart", null);
|
|
18570
20776
|
|
|
18571
|
-
(0,
|
|
20777
|
+
(0,defineProperty/* default */.Z)(this, "_skylineAnalysisChartTitle", "");
|
|
18572
20778
|
|
|
18573
|
-
(0,
|
|
20779
|
+
(0,defineProperty/* default */.Z)(this, "_options", null);
|
|
18574
20780
|
|
|
18575
|
-
(0,
|
|
20781
|
+
(0,defineProperty/* default */.Z)(this, "_showLimitHeightBody", null);
|
|
18576
20782
|
|
|
18577
20783
|
viewer.scene.globe.depthTestAgainstTerrain = true; //开启深度检测
|
|
18578
20784
|
|
|
@@ -18626,7 +20832,10 @@ class SkylineAnalysisViewModel {
|
|
|
18626
20832
|
|
|
18627
20833
|
this.setSkyline2D();
|
|
18628
20834
|
} else {
|
|
18629
|
-
|
|
20835
|
+
(0,message/* default */.Z)({
|
|
20836
|
+
message: "请添加模型后提取!",
|
|
20837
|
+
type: "warning"
|
|
20838
|
+
});
|
|
18630
20839
|
}
|
|
18631
20840
|
}
|
|
18632
20841
|
/**
|
|
@@ -18658,7 +20867,10 @@ class SkylineAnalysisViewModel {
|
|
|
18658
20867
|
|
|
18659
20868
|
this._skylineAnalysis.viewer.camera.moveBackward(1);
|
|
18660
20869
|
} else {
|
|
18661
|
-
|
|
20870
|
+
(0,message/* default */.Z)({
|
|
20871
|
+
message: "请添加模型后提取!",
|
|
20872
|
+
type: "warning"
|
|
20873
|
+
});
|
|
18662
20874
|
}
|
|
18663
20875
|
}
|
|
18664
20876
|
/**
|
|
@@ -18814,26 +21026,6 @@ class SkylineAnalysisViewModel {
|
|
|
18814
21026
|
}
|
|
18815
21027
|
|
|
18816
21028
|
}
|
|
18817
|
-
|
|
18818
|
-
/***/ }),
|
|
18819
|
-
|
|
18820
|
-
/***/ 1075:
|
|
18821
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
18822
|
-
|
|
18823
|
-
|
|
18824
|
-
// EXPORTS
|
|
18825
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
18826
|
-
"default": function() { return /* reexport */ SkylineAnalysis; }
|
|
18827
|
-
});
|
|
18828
|
-
|
|
18829
|
-
// UNUSED EXPORTS: SkylineAnalysisViewModel
|
|
18830
|
-
|
|
18831
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
18832
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
18833
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
18834
|
-
var gis_utils_ = __webpack_require__(826);
|
|
18835
|
-
// EXTERNAL MODULE: ./src/webgl/skylineanalysis/SkylineAnalysisViewModel.js
|
|
18836
|
-
var SkylineAnalysisViewModel = __webpack_require__(3084);
|
|
18837
21029
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
18838
21030
|
var client_icons_vue_ = __webpack_require__(348);
|
|
18839
21031
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -18957,7 +21149,7 @@ const __default__ = {
|
|
|
18957
21149
|
gis_utils_.utils.getWebMap(null, scenceView => {
|
|
18958
21150
|
if (scenceView) {
|
|
18959
21151
|
language.value = scenceView._language;
|
|
18960
|
-
viewModel = new SkylineAnalysisViewModel
|
|
21152
|
+
viewModel = new SkylineAnalysisViewModel(scenceView._viewer, {
|
|
18961
21153
|
skylineColor: formItem.skylineColor || "#E6A23C",
|
|
18962
21154
|
skylineRadius: formItem.skylineRadius || 1000,
|
|
18963
21155
|
limitHeightBodyColor: formItem.limitHeightBodyColor || "#67C23A",
|
|
@@ -19395,10 +21587,13 @@ var gis_utils_ = __webpack_require__(826);
|
|
|
19395
21587
|
var defineProperty = __webpack_require__(8270);
|
|
19396
21588
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/const-image"
|
|
19397
21589
|
var const_image_ = __webpack_require__(9702);
|
|
21590
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
21591
|
+
var message = __webpack_require__(909);
|
|
19398
21592
|
;// CONCATENATED MODULE: ./src/webgl/slopeanalysis/SlopeAnalysisViewModel.js
|
|
19399
21593
|
|
|
19400
21594
|
// 分析逻辑类
|
|
19401
21595
|
|
|
21596
|
+
|
|
19402
21597
|
class SlopeAnalysisViewModel {
|
|
19403
21598
|
// 坡度坡向三维对象
|
|
19404
21599
|
constructor(scenceView, viewModel) {
|
|
@@ -19520,26 +21715,36 @@ class SlopeAnalysisViewModel {
|
|
|
19520
21715
|
start() {
|
|
19521
21716
|
// 判断是否添加了地形
|
|
19522
21717
|
if (this._globaOptions.viewModel.viewer.terrainProvider.availability) {
|
|
19523
|
-
if (this._globaOptions.viewModel.
|
|
19524
|
-
|
|
19525
|
-
|
|
19526
|
-
|
|
19527
|
-
|
|
19528
|
-
|
|
19529
|
-
|
|
19530
|
-
|
|
19531
|
-
|
|
19532
|
-
|
|
19533
|
-
} else {
|
|
19534
|
-
// this.clear();
|
|
19535
|
-
if (this._globaOptions._drawManager) {
|
|
19536
|
-
this._globaOptions._drawManager.startDraw("polygon", {
|
|
19537
|
-
clampToGround: true
|
|
21718
|
+
if (this._globaOptions.viewModel.viewer.terrainProvider instanceof Cesium.CesiumTerrainProvider) {
|
|
21719
|
+
if (this._globaOptions.viewModel.fillStyle === "slopeFilter") {
|
|
21720
|
+
// 坡度过滤不需要进行绘制
|
|
21721
|
+
this._slopeAnalysis = new Cesium.Kq3dSlope({
|
|
21722
|
+
viewer: this._globaOptions.viewer,
|
|
21723
|
+
positions: this._defaultPositions,
|
|
21724
|
+
isFilter: true,
|
|
21725
|
+
minSlope: this._globaOptions.viewModel.minSlope,
|
|
21726
|
+
maxSlope: this._globaOptions.viewModel.maxSlope,
|
|
21727
|
+
color: Cesium.Color.fromCssColorString(this._globaOptions.viewModel.slopeColorText).withAlpha(Number(this._globaOptions.viewModel.slopeColorAlpha))
|
|
19538
21728
|
});
|
|
21729
|
+
} else {
|
|
21730
|
+
// this.clear();
|
|
21731
|
+
if (this._globaOptions._drawManager) {
|
|
21732
|
+
this._globaOptions._drawManager.startDraw("polygon", {
|
|
21733
|
+
clampToGround: true
|
|
21734
|
+
});
|
|
21735
|
+
}
|
|
19539
21736
|
}
|
|
21737
|
+
} else {
|
|
21738
|
+
(0,message/* default */.Z)({
|
|
21739
|
+
message: "只支持STK类型的地形分析!",
|
|
21740
|
+
type: "warning"
|
|
21741
|
+
});
|
|
19540
21742
|
}
|
|
19541
21743
|
} else {
|
|
19542
|
-
|
|
21744
|
+
(0,message/* default */.Z)({
|
|
21745
|
+
message: "请加载地形后分析!",
|
|
21746
|
+
type: "warning"
|
|
21747
|
+
});
|
|
19543
21748
|
}
|
|
19544
21749
|
} //修改填充样式
|
|
19545
21750
|
|
|
@@ -20639,15 +22844,29 @@ StatusBar.install = (Vue, opts) => {
|
|
|
20639
22844
|
|
|
20640
22845
|
/***/ }),
|
|
20641
22846
|
|
|
20642
|
-
/***/
|
|
22847
|
+
/***/ 2686:
|
|
20643
22848
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
20644
22849
|
|
|
20645
|
-
|
|
20646
|
-
|
|
20647
|
-
|
|
20648
|
-
|
|
22850
|
+
|
|
22851
|
+
// EXPORTS
|
|
22852
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
22853
|
+
"default": function() { return /* reexport */ TerrainOperation; }
|
|
22854
|
+
});
|
|
22855
|
+
|
|
22856
|
+
// UNUSED EXPORTS: TerrainOperationViewModel
|
|
22857
|
+
|
|
22858
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
22859
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
22860
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
22861
|
+
var gis_utils_ = __webpack_require__(826);
|
|
22862
|
+
// EXTERNAL MODULE: ./node_modules/@babel/runtime/helpers/esm/defineProperty.js
|
|
22863
|
+
var defineProperty = __webpack_require__(8270);
|
|
22864
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js + 1 modules
|
|
22865
|
+
var message = __webpack_require__(909);
|
|
22866
|
+
;// CONCATENATED MODULE: ./src/webgl/terrainoperation/TerrainOperationViewModel.js
|
|
20649
22867
|
|
|
20650
22868
|
//地形淹没分析逻辑类
|
|
22869
|
+
|
|
20651
22870
|
class TerrainOperationViewModel {
|
|
20652
22871
|
//地形开挖三维对象
|
|
20653
22872
|
//地形修改三维对象
|
|
@@ -20658,21 +22877,21 @@ class TerrainOperationViewModel {
|
|
|
20658
22877
|
//开挖深度
|
|
20659
22878
|
//绘制完成监听事件
|
|
20660
22879
|
constructor(scenceView, viewModel) {
|
|
20661
|
-
(0,
|
|
22880
|
+
(0,defineProperty/* default */.Z)(this, "_terrainexcavationext", null);
|
|
20662
22881
|
|
|
20663
|
-
(0,
|
|
22882
|
+
(0,defineProperty/* default */.Z)(this, "_terrainmodification", null);
|
|
20664
22883
|
|
|
20665
|
-
(0,
|
|
22884
|
+
(0,defineProperty/* default */.Z)(this, "_drawManager", null);
|
|
20666
22885
|
|
|
20667
|
-
(0,
|
|
22886
|
+
(0,defineProperty/* default */.Z)(this, "_globaOptions", {});
|
|
20668
22887
|
|
|
20669
|
-
(0,
|
|
22888
|
+
(0,defineProperty/* default */.Z)(this, "_positions", []);
|
|
20670
22889
|
|
|
20671
|
-
(0,
|
|
22890
|
+
(0,defineProperty/* default */.Z)(this, "_terrainStyle", null);
|
|
20672
22891
|
|
|
20673
|
-
(0,
|
|
22892
|
+
(0,defineProperty/* default */.Z)(this, "_height", 0);
|
|
20674
22893
|
|
|
20675
|
-
(0,
|
|
22894
|
+
(0,defineProperty/* default */.Z)(this, "_removeEventListener", null);
|
|
20676
22895
|
|
|
20677
22896
|
this._globaOptions.viewer = scenceView._viewer;
|
|
20678
22897
|
this._globaOptions.viewer.scene.logarithmicDepthBuffer = false;
|
|
@@ -20785,13 +23004,23 @@ class TerrainOperationViewModel {
|
|
|
20785
23004
|
start() {
|
|
20786
23005
|
// 判断是否添加了地形
|
|
20787
23006
|
if (this._globaOptions.viewer.terrainProvider.availability) {
|
|
20788
|
-
this.
|
|
23007
|
+
if (this._globaOptions.viewer.terrainProvider instanceof Cesium.CesiumTerrainProvider) {
|
|
23008
|
+
this.clear();
|
|
20789
23009
|
|
|
20790
|
-
|
|
20791
|
-
|
|
20792
|
-
|
|
23010
|
+
this._drawManager.startDraw("polygon", {
|
|
23011
|
+
clampToGround: true
|
|
23012
|
+
});
|
|
23013
|
+
} else {
|
|
23014
|
+
(0,message/* default */.Z)({
|
|
23015
|
+
message: "只支持STK类型的地形分析!",
|
|
23016
|
+
type: "warning"
|
|
23017
|
+
});
|
|
23018
|
+
}
|
|
20793
23019
|
} else {
|
|
20794
|
-
|
|
23020
|
+
(0,message/* default */.Z)({
|
|
23021
|
+
message: "请加载地形后分析!",
|
|
23022
|
+
type: "warning"
|
|
23023
|
+
});
|
|
20795
23024
|
}
|
|
20796
23025
|
} //改变分析类型
|
|
20797
23026
|
|
|
@@ -20851,26 +23080,6 @@ class TerrainOperationViewModel {
|
|
|
20851
23080
|
}
|
|
20852
23081
|
|
|
20853
23082
|
}
|
|
20854
|
-
|
|
20855
|
-
/***/ }),
|
|
20856
|
-
|
|
20857
|
-
/***/ 9560:
|
|
20858
|
-
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
20859
|
-
|
|
20860
|
-
|
|
20861
|
-
// EXPORTS
|
|
20862
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
20863
|
-
"default": function() { return /* reexport */ TerrainOperation; }
|
|
20864
|
-
});
|
|
20865
|
-
|
|
20866
|
-
// UNUSED EXPORTS: TerrainOperationViewModel
|
|
20867
|
-
|
|
20868
|
-
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
20869
|
-
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(637);
|
|
20870
|
-
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
20871
|
-
var gis_utils_ = __webpack_require__(826);
|
|
20872
|
-
// EXTERNAL MODULE: ./src/webgl/terrainoperation/TerrainOperationViewModel.js
|
|
20873
|
-
var TerrainOperationViewModel = __webpack_require__(5925);
|
|
20874
23083
|
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
20875
23084
|
var client_icons_vue_ = __webpack_require__(348);
|
|
20876
23085
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
@@ -20985,7 +23194,7 @@ const __default__ = {
|
|
|
20985
23194
|
}
|
|
20986
23195
|
|
|
20987
23196
|
language.value = scenceView._language;
|
|
20988
|
-
viewModel = new TerrainOperationViewModel
|
|
23197
|
+
viewModel = new TerrainOperationViewModel(scenceView, {
|
|
20989
23198
|
terrainStyle: formItem.terrainStyle,
|
|
20990
23199
|
excavationDepth: formItem.excavationDepth
|
|
20991
23200
|
});
|
|
@@ -23282,6 +25491,13 @@ module.exports = require("core-js/modules/es.array.includes.js");
|
|
|
23282
25491
|
|
|
23283
25492
|
/***/ }),
|
|
23284
25493
|
|
|
25494
|
+
/***/ 1088:
|
|
25495
|
+
/***/ (function(module) {
|
|
25496
|
+
|
|
25497
|
+
module.exports = require("@kq_npm/client_common_vue/_types/global-event");
|
|
25498
|
+
|
|
25499
|
+
/***/ }),
|
|
25500
|
+
|
|
23285
25501
|
/***/ 9702:
|
|
23286
25502
|
/***/ (function(module) {
|
|
23287
25503
|
|
|
@@ -23442,42 +25658,44 @@ var fixedzoomin = __webpack_require__(9579);
|
|
|
23442
25658
|
var resetview = __webpack_require__(9436);
|
|
23443
25659
|
// EXTERNAL MODULE: ./src/webgl/compass/index.js + 3 modules
|
|
23444
25660
|
var compass = __webpack_require__(8253);
|
|
25661
|
+
// EXTERNAL MODULE: ./src/webgl/clientPrint/index.js + 5 modules
|
|
25662
|
+
var clientPrint = __webpack_require__(2935);
|
|
23445
25663
|
// EXTERNAL MODULE: ./src/webgl/baseterraingallery/index.js + 3 modules
|
|
23446
25664
|
var baseterraingallery = __webpack_require__(7467);
|
|
23447
25665
|
// EXTERNAL MODULE: ./src/webgl/measure/index.js + 3 modules
|
|
23448
25666
|
var measure = __webpack_require__(919);
|
|
23449
25667
|
// EXTERNAL MODULE: ./src/webgl/flight/index.js + 3 modules
|
|
23450
25668
|
var flight = __webpack_require__(224);
|
|
23451
|
-
// EXTERNAL MODULE: ./src/webgl/gpuspatialquery/index.js +
|
|
23452
|
-
var gpuspatialquery = __webpack_require__(
|
|
23453
|
-
// EXTERNAL MODULE: ./src/webgl/modelselect/index.js +
|
|
23454
|
-
var modelselect = __webpack_require__(
|
|
25669
|
+
// EXTERNAL MODULE: ./src/webgl/gpuspatialquery/index.js + 5 modules
|
|
25670
|
+
var gpuspatialquery = __webpack_require__(7719);
|
|
25671
|
+
// EXTERNAL MODULE: ./src/webgl/modelselect/index.js + 4 modules
|
|
25672
|
+
var modelselect = __webpack_require__(9089);
|
|
23455
25673
|
// EXTERNAL MODULE: ./src/webgl/sightlineanalysis/index.js + 5 modules
|
|
23456
25674
|
var sightlineanalysis = __webpack_require__(6031);
|
|
23457
25675
|
// EXTERNAL MODULE: ./src/webgl/viewshedanalysis/index.js + 3 modules
|
|
23458
25676
|
var viewshedanalysis = __webpack_require__(3063);
|
|
23459
|
-
// EXTERNAL MODULE: ./src/webgl/shadowanalysis/index.js +
|
|
23460
|
-
var shadowanalysis = __webpack_require__(
|
|
25677
|
+
// EXTERNAL MODULE: ./src/webgl/shadowanalysis/index.js + 4 modules
|
|
25678
|
+
var shadowanalysis = __webpack_require__(8449);
|
|
23461
25679
|
// EXTERNAL MODULE: ./src/webgl/profileanalysis/index.js + 3 modules
|
|
23462
25680
|
var profileanalysis = __webpack_require__(7501);
|
|
23463
|
-
// EXTERNAL MODULE: ./src/webgl/skylineanalysis/index.js +
|
|
23464
|
-
var skylineanalysis = __webpack_require__(
|
|
23465
|
-
// EXTERNAL MODULE: ./src/webgl/terrainoperation/index.js +
|
|
23466
|
-
var terrainoperation = __webpack_require__(
|
|
23467
|
-
// EXTERNAL MODULE: ./src/webgl/excavatefillanalysis/index.js +
|
|
23468
|
-
var excavatefillanalysis = __webpack_require__(
|
|
25681
|
+
// EXTERNAL MODULE: ./src/webgl/skylineanalysis/index.js + 5 modules
|
|
25682
|
+
var skylineanalysis = __webpack_require__(421);
|
|
25683
|
+
// EXTERNAL MODULE: ./src/webgl/terrainoperation/index.js + 4 modules
|
|
25684
|
+
var terrainoperation = __webpack_require__(2686);
|
|
25685
|
+
// EXTERNAL MODULE: ./src/webgl/excavatefillanalysis/index.js + 4 modules
|
|
25686
|
+
var excavatefillanalysis = __webpack_require__(7739);
|
|
23469
25687
|
// EXTERNAL MODULE: ./src/webgl/floodanalysis/index.js + 4 modules
|
|
23470
25688
|
var floodanalysis = __webpack_require__(3527);
|
|
23471
25689
|
// EXTERNAL MODULE: ./src/webgl/slopeanalysis/index.js + 4 modules
|
|
23472
25690
|
var slopeanalysis = __webpack_require__(7668);
|
|
23473
|
-
// EXTERNAL MODULE: ./src/webgl/aspectanalysis/index.js +
|
|
23474
|
-
var aspectanalysis = __webpack_require__(
|
|
25691
|
+
// EXTERNAL MODULE: ./src/webgl/aspectanalysis/index.js + 4 modules
|
|
25692
|
+
var aspectanalysis = __webpack_require__(6776);
|
|
23475
25693
|
// EXTERNAL MODULE: ./src/webgl/isolineanalysis/index.js + 4 modules
|
|
23476
25694
|
var isolineanalysis = __webpack_require__(9783);
|
|
23477
|
-
// EXTERNAL MODULE: ./src/webgl/boxclip/index.js +
|
|
23478
|
-
var boxclip = __webpack_require__(
|
|
23479
|
-
// EXTERNAL MODULE: ./src/webgl/planeclip/index.js +
|
|
23480
|
-
var planeclip = __webpack_require__(
|
|
25695
|
+
// EXTERNAL MODULE: ./src/webgl/boxclip/index.js + 4 modules
|
|
25696
|
+
var boxclip = __webpack_require__(4510);
|
|
25697
|
+
// EXTERNAL MODULE: ./src/webgl/planeclip/index.js + 4 modules
|
|
25698
|
+
var planeclip = __webpack_require__(9736);
|
|
23481
25699
|
// EXTERNAL MODULE: ./src/webgl/adddata/index.js + 4 modules
|
|
23482
25700
|
var adddata = __webpack_require__(696);
|
|
23483
25701
|
// EXTERNAL MODULE: ./src/webgl/particleeffect/index.js + 4 modules
|
|
@@ -23513,6 +25731,9 @@ var statusbar = __webpack_require__(6466);
|
|
|
23513
25731
|
|
|
23514
25732
|
|
|
23515
25733
|
|
|
25734
|
+
// 客户端打印
|
|
25735
|
+
|
|
25736
|
+
|
|
23516
25737
|
// 在线地形
|
|
23517
25738
|
|
|
23518
25739
|
|
|
@@ -23604,7 +25825,8 @@ const webglComponents = {
|
|
|
23604
25825
|
Kq3dResetView: resetview["default"],
|
|
23605
25826
|
Kq3dCompass: compass["default"],
|
|
23606
25827
|
Kq3dUnderground: underground["default"],
|
|
23607
|
-
Kq3dStatusBar: statusbar["default"]
|
|
25828
|
+
Kq3dStatusBar: statusbar["default"],
|
|
25829
|
+
Kq3dClientPrint: clientPrint["default"]
|
|
23608
25830
|
}; // 全局引入
|
|
23609
25831
|
|
|
23610
25832
|
const install = function (Vue, opts = {}) {
|
|
@@ -24182,9 +26404,9 @@ var webmapservice_ = __webpack_require__(5360);
|
|
|
24182
26404
|
var webmapservice_default = /*#__PURE__*/__webpack_require__.n(webmapservice_);
|
|
24183
26405
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util"
|
|
24184
26406
|
var util_ = __webpack_require__(9519);
|
|
24185
|
-
|
|
24186
|
-
var
|
|
24187
|
-
var global_event_default = /*#__PURE__*/__webpack_require__.n(
|
|
26407
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_types/global-event"
|
|
26408
|
+
var global_event_ = __webpack_require__(1088);
|
|
26409
|
+
var global_event_default = /*#__PURE__*/__webpack_require__.n(global_event_);
|
|
24188
26410
|
;// CONCATENATED MODULE: ./src/webgl/scenceview/LayerManager.js
|
|
24189
26411
|
|
|
24190
26412
|
|