@kq_npm/client3d_webgl_vue 4.3.2 → 4.3.3-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adddata/index.js +35 -4
- package/adddata/style/adddata.css +110 -1
- package/aspectanalysis/style/aspectanalysis.css +101 -1
- package/baseterraingallery/index.js +2 -2
- package/baseterraingallery/style/baseterraingallery.css +88 -1
- package/boxclip/index.js +10 -0
- package/boxclip/style/boxclip.css +97 -1
- package/clientPrint/index.js +5 -15
- package/clientPrint/style/clientPrint.css +461 -1
- package/comparemap/index.js +136 -145
- package/comparemap/style/comparemap.css +35 -1
- package/compass/index.js +2 -2
- package/excavatefillanalysis/style/excavatefillanalysis.css +140 -1
- package/fixedzoomin/index.js +2 -2
- package/fixedzoomout/index.js +2 -2
- package/flight/index.js +13 -3
- package/flight/style/flight.css +150 -1
- package/floodanalysis/style/floodanalysis.css +95 -1
- package/geologicalbodyanalysis/index.js +10 -0
- package/geologicalbodyanalysis/style/geologicalbodyanalysis.css +64 -1
- package/gpuspatialquery/index.js +10 -0
- package/gpuspatialquery/style/gpuspatialquery.css +88 -1
- package/hawkeye/index.js +2 -2
- package/index.js +46 -9
- package/isolineanalysis/style/isolineanalysis.css +113 -1
- package/light/index.js +170 -169
- package/light/style/light.css +104 -1
- package/limitheightanalysis/index.js +126 -125
- package/limitheightanalysis/style/limitheightanalysis.css +88 -1
- package/measure/index.js +5 -5
- package/measure/style/measure.css +84 -1
- package/modelFlat/index.js +10 -0
- package/modelFlat/style/modelFlat.css +66 -1
- package/modelexcavate/index.js +10 -0
- package/modelexcavate/style/modelexcavate.css +66 -1
- package/modelfilter/index.js +10 -0
- package/modelfilter/style/modelfilter.css +66 -1
- package/modelprofileanalysis/index.js +165 -164
- package/modelprofileanalysis/style/modelprofileanalysis.css +94 -1
- package/modelselect/index.js +10 -0
- package/modelselect/style/modelselect.css +28 -1
- package/package.json +1 -1
- package/particleeffect/index.js +10 -0
- package/particleeffect/style/particleeffect.css +94 -1
- package/planeclip/index.js +10 -0
- package/planeclip/style/planeclip.css +94 -1
- package/resetview/index.js +2 -2
- package/roller/index.js +171 -170
- package/roller/style/roller.css +59 -1
- package/scaneffect/index.js +10 -0
- package/scaneffect/style/scaneffect.css +101 -1
- package/sceneset/index.js +10 -1
- package/sceneset/style/sceneset.css +86 -1
- package/sceneview/index.js +313 -270
- package/sceneview/style/sceneview.css +127 -1
- package/screenshot/index.js +159 -158
- package/screenshot/style/screenshot.css +53 -1
- package/shadowanalysis/style/shadowanalysis.css +141 -1
- package/sightlineanalysis/index.js +7 -5
- package/sightlineanalysis/style/divpoint.css +22 -1
- package/sightlineanalysis/style/sightlineanalysis.css +85 -1
- package/skylineanalysis/style/skylineanalysis.css +100 -1
- package/slopeanalysis/style/slopeanalysis.css +101 -1
- package/statusbar/index.js +12 -3
- package/style.css +3817 -1
- package/terrainoperation/index.js +10 -0
- package/terrainoperation/style/terrainoperation.css +66 -1
- package/terrainprofileanalysis/index.js +10 -0
- package/terrainprofileanalysis/style/terrainprofileanalysis.css +83 -1
- package/underground/index.js +3 -3
- package/underground/style/underground.css +19 -1
- package/videofusion/index.js +35 -5
- package/videofusion/style/videofusion.css +104 -1
- package/videoproject/index.js +35 -5
- package/videoproject/style/videoproject.css +104 -1
- package/viewshedanalysis/style/viewshedanalysis.css +88 -1
- package/weathereffect/style/weathereffect.css +95 -1
- package/wireframesketch/index.js +10 -0
- package/wireframesketch/style/wireframesketch.css +12 -1
|
@@ -1 +1,88 @@
|
|
|
1
|
-
.kq3d-viewshed-analysis
|
|
1
|
+
.kq3d-viewshed-analysis {
|
|
2
|
+
z-index: 999;
|
|
3
|
+
border-radius: var(--kq-border-radius-base);
|
|
4
|
+
padding: 16px;
|
|
5
|
+
pointer-events: auto;
|
|
6
|
+
cursor: default;
|
|
7
|
+
background-color: var(--kq-bg-color);
|
|
8
|
+
}
|
|
9
|
+
.kq3d-viewshed-analysis .kq3d-viewshed-analysis-box {
|
|
10
|
+
width: 372px;
|
|
11
|
+
}
|
|
12
|
+
.kq3d-viewshed-analysis .kq3d-viewshed-analysis-tip {
|
|
13
|
+
color: var(--kq-text-color-regular);
|
|
14
|
+
font-size: var(--kq-font-size-base);
|
|
15
|
+
}
|
|
16
|
+
.kq3d-viewshed-analysis .kq3d-viewshed-analysis-tip p {
|
|
17
|
+
margin-top: 0px;
|
|
18
|
+
margin-bottom: 16px;
|
|
19
|
+
}
|
|
20
|
+
.kq3d-viewshed-analysis .kq-collapse {
|
|
21
|
+
border: unset;
|
|
22
|
+
}
|
|
23
|
+
.kq3d-viewshed-analysis .kq-collapse .kq-collapse-item__header {
|
|
24
|
+
border: unset;
|
|
25
|
+
height: 38px;
|
|
26
|
+
background-color: var(--kq-fill-color-light);
|
|
27
|
+
font-weight: bold;
|
|
28
|
+
padding: 0px 16px;
|
|
29
|
+
font-size: 16px;
|
|
30
|
+
}
|
|
31
|
+
.kq3d-viewshed-analysis .kq-collapse .kq-collapse-item__arrow {
|
|
32
|
+
margin: 0 0px 0 auto;
|
|
33
|
+
}
|
|
34
|
+
.kq3d-viewshed-analysis .kq-collapse .kq-collapse-item__wrap .kq-collapse-item__content {
|
|
35
|
+
padding-bottom: unset;
|
|
36
|
+
border: unset;
|
|
37
|
+
padding-top: 10px;
|
|
38
|
+
}
|
|
39
|
+
.kq3d-viewshed-analysis .kq-form-item {
|
|
40
|
+
margin-bottom: 8px;
|
|
41
|
+
}
|
|
42
|
+
.kq3d-viewshed-analysis .kq-form-item__content {
|
|
43
|
+
text-align: end;
|
|
44
|
+
display: block;
|
|
45
|
+
}
|
|
46
|
+
.kq3d-viewshed-analysis .kq-row {
|
|
47
|
+
display: block;
|
|
48
|
+
}
|
|
49
|
+
.kq3d-viewshed-analysis .kq-slider {
|
|
50
|
+
width: 95%;
|
|
51
|
+
padding-left: 7px;
|
|
52
|
+
}
|
|
53
|
+
.kq3d-viewshed-analysis .kq-slider .kq-slider__button {
|
|
54
|
+
width: 14px;
|
|
55
|
+
height: 14px;
|
|
56
|
+
}
|
|
57
|
+
.kq3d-viewshed-analysis .kq-input-number {
|
|
58
|
+
width: 65px;
|
|
59
|
+
}
|
|
60
|
+
.kq3d-viewshed-analysis .kq-input-number .kq-input-number__increase,
|
|
61
|
+
.kq3d-viewshed-analysis .kq-input-number .kq-input-number__decrease {
|
|
62
|
+
width: 20px;
|
|
63
|
+
}
|
|
64
|
+
.kq3d-viewshed-analysis .kq-input-number .kq-input__wrapper {
|
|
65
|
+
padding-left: 0px;
|
|
66
|
+
padding-right: 20px;
|
|
67
|
+
}
|
|
68
|
+
.kq3d-viewshed-analysis .kq-col-8 .kq-input-number .kq-input__wrapper {
|
|
69
|
+
padding-left: 0px;
|
|
70
|
+
padding-right: 20px;
|
|
71
|
+
}
|
|
72
|
+
.kq3d-viewshed-analysis .kq-color-picker {
|
|
73
|
+
width: 100%;
|
|
74
|
+
}
|
|
75
|
+
.kq3d-viewshed-analysis .kq-color-picker .kq-color-picker__mask {
|
|
76
|
+
width: 100%;
|
|
77
|
+
}
|
|
78
|
+
.kq3d-viewshed-analysis .kq-color-picker .kq-color-picker__trigger {
|
|
79
|
+
width: 100%;
|
|
80
|
+
}
|
|
81
|
+
.kq3d-viewshed-analysis .kq3d-viewshed-analysis-footer {
|
|
82
|
+
text-align: right;
|
|
83
|
+
padding: 16px 0px 0px;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.cesium-viewer-cesiumWidgetContainer .twipsy {
|
|
87
|
+
display: none !important;
|
|
88
|
+
}
|
|
@@ -1 +1,95 @@
|
|
|
1
|
-
.kq3d-weather-effect
|
|
1
|
+
.kq3d-weather-effect {
|
|
2
|
+
z-index: 999;
|
|
3
|
+
border-radius: var(--kq-border-radius-base);
|
|
4
|
+
padding: 16px;
|
|
5
|
+
pointer-events: auto;
|
|
6
|
+
cursor: default;
|
|
7
|
+
background-color: var(--kq-bg-color);
|
|
8
|
+
}
|
|
9
|
+
.kq3d-weather-effect .kq3d-weather-effect-box {
|
|
10
|
+
width: 372px;
|
|
11
|
+
}
|
|
12
|
+
.kq3d-weather-effect .kq-row {
|
|
13
|
+
margin-bottom: 0px;
|
|
14
|
+
}
|
|
15
|
+
.kq3d-weather-effect .rowclass {
|
|
16
|
+
margin-left: 0px !important;
|
|
17
|
+
margin-right: 0px !important;
|
|
18
|
+
margin-bottom: 8px !important;
|
|
19
|
+
}
|
|
20
|
+
.kq3d-weather-effect .kq3d-weather-effect-btn {
|
|
21
|
+
font-size: 20px;
|
|
22
|
+
height: 36px;
|
|
23
|
+
padding: 8px 10px;
|
|
24
|
+
}
|
|
25
|
+
.kq3d-weather-effect .kq3d-weather-effect-btn_active {
|
|
26
|
+
color: var(--kq-button-active-text-color);
|
|
27
|
+
border-color: var(--kq-button-active-border-color);
|
|
28
|
+
background-color: var(--kq-button-active-bg-color);
|
|
29
|
+
outline: none;
|
|
30
|
+
}
|
|
31
|
+
.kq3d-weather-effect .kq3d-weather-effect-tip {
|
|
32
|
+
color: var(--kq-text-color-regular);
|
|
33
|
+
font-size: var(--kq-font-size-base);
|
|
34
|
+
}
|
|
35
|
+
.kq3d-weather-effect .kq3d-weather-effect-tip p {
|
|
36
|
+
margin: 8px 0px 16px;
|
|
37
|
+
}
|
|
38
|
+
.kq3d-weather-effect .kq3d-weather-effect-collapse .kq-row {
|
|
39
|
+
display: block;
|
|
40
|
+
}
|
|
41
|
+
.kq3d-weather-effect .kq3d-weather-effect-collapse .kq-divider--horizontal {
|
|
42
|
+
margin: 0px;
|
|
43
|
+
}
|
|
44
|
+
.kq3d-weather-effect .kq-collapse {
|
|
45
|
+
border: unset;
|
|
46
|
+
}
|
|
47
|
+
.kq3d-weather-effect .kq-collapse .kq-collapse-item__header {
|
|
48
|
+
border: unset;
|
|
49
|
+
height: 38px;
|
|
50
|
+
background-color: var(--kq-fill-color-light);
|
|
51
|
+
font-weight: bold;
|
|
52
|
+
padding: 0px 16px;
|
|
53
|
+
font-size: 16px;
|
|
54
|
+
}
|
|
55
|
+
.kq3d-weather-effect .kq-collapse .kq-collapse-item__arrow {
|
|
56
|
+
margin: 0 0px 0 auto;
|
|
57
|
+
}
|
|
58
|
+
.kq3d-weather-effect .kq-collapse .kq-collapse-item__wrap .kq-collapse-item__content {
|
|
59
|
+
padding-bottom: unset;
|
|
60
|
+
border: unset;
|
|
61
|
+
padding-top: 10px;
|
|
62
|
+
}
|
|
63
|
+
.kq3d-weather-effect .kq-form-item {
|
|
64
|
+
margin-bottom: 0px;
|
|
65
|
+
}
|
|
66
|
+
.kq3d-weather-effect .kq-form-item__content {
|
|
67
|
+
text-align: end;
|
|
68
|
+
display: block;
|
|
69
|
+
}
|
|
70
|
+
.kq3d-weather-effect .kq-slider {
|
|
71
|
+
width: 95%;
|
|
72
|
+
}
|
|
73
|
+
.kq3d-weather-effect .kq-slider .kq-slider__button {
|
|
74
|
+
width: 14px;
|
|
75
|
+
height: 14px;
|
|
76
|
+
}
|
|
77
|
+
.kq3d-weather-effect .kq-input-number.is-controls-right {
|
|
78
|
+
width: 65px;
|
|
79
|
+
}
|
|
80
|
+
.kq3d-weather-effect .kq-input-number.is-controls-right .kq-input-number__increase,
|
|
81
|
+
.kq3d-weather-effect .kq-input-number.is-controls-right .kq-input-number__decrease {
|
|
82
|
+
width: 20px;
|
|
83
|
+
}
|
|
84
|
+
.kq3d-weather-effect .kq-input-number.is-controls-right .kq-input__wrapper {
|
|
85
|
+
padding-left: 0px;
|
|
86
|
+
padding-right: 20px;
|
|
87
|
+
}
|
|
88
|
+
.kq3d-weather-effect .kq-col-8 .kq-input-number .kq-input__wrapper {
|
|
89
|
+
padding-left: 0px;
|
|
90
|
+
padding-right: 20px;
|
|
91
|
+
}
|
|
92
|
+
.kq3d-weather-effect .kq3d-weather-effect-footer {
|
|
93
|
+
text-align: right;
|
|
94
|
+
padding: 16px 0px 0px;
|
|
95
|
+
}
|
package/wireframesketch/index.js
CHANGED
|
@@ -43,6 +43,13 @@ module.exports = require("@kq_npm/client_icons_vue");
|
|
|
43
43
|
|
|
44
44
|
/***/ }),
|
|
45
45
|
|
|
46
|
+
/***/ 2118:
|
|
47
|
+
/***/ (function(module) {
|
|
48
|
+
|
|
49
|
+
module.exports = require("core-js/modules/es.array.push.js");
|
|
50
|
+
|
|
51
|
+
/***/ }),
|
|
52
|
+
|
|
46
53
|
/***/ 7080:
|
|
47
54
|
/***/ (function(module) {
|
|
48
55
|
|
|
@@ -181,6 +188,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
181
188
|
"default": function() { return /* reexport */ WireframeSketch; }
|
|
182
189
|
});
|
|
183
190
|
|
|
191
|
+
// EXTERNAL MODULE: external "core-js/modules/es.array.push.js"
|
|
192
|
+
var es_array_push_js_ = __webpack_require__(2118);
|
|
184
193
|
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
185
194
|
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(1895);
|
|
186
195
|
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
@@ -265,6 +274,7 @@ var vue_i18n_cjs_js_ = __webpack_require__(7080);
|
|
|
265
274
|
|
|
266
275
|
|
|
267
276
|
|
|
277
|
+
|
|
268
278
|
//语言
|
|
269
279
|
|
|
270
280
|
const __default__ = {
|
|
@@ -1 +1,12 @@
|
|
|
1
|
-
.kq3d-wireframe-sketch
|
|
1
|
+
.kq3d-wireframe-sketch {
|
|
2
|
+
z-index: 999;
|
|
3
|
+
border-radius: var(--kq-border-radius-base);
|
|
4
|
+
padding: 16px;
|
|
5
|
+
pointer-events: auto;
|
|
6
|
+
cursor: default;
|
|
7
|
+
width: 310px;
|
|
8
|
+
background-color: var(--kq-bg-color);
|
|
9
|
+
}
|
|
10
|
+
.kq3d-wireframe-sketch .kq3d-wireframe-sketch-box .kq-form-item {
|
|
11
|
+
margin-bottom: 0px;
|
|
12
|
+
}
|