@kq_npm/client3d_webgl_vue 2.7.3-beta → 2.7.4-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/aspectanalysis/index.js +32 -14
- package/index.js +149 -84
- package/isolineanalysis/index.js +93 -54
- package/package.json +1 -1
- package/scenceview/index.js +148 -83
- package/statusbar/index.js +7 -7
- package/terrainoperation/index.js +1 -1
package/isolineanalysis/index.js
CHANGED
|
@@ -606,26 +606,59 @@ const __default__ = {
|
|
|
606
606
|
|
|
607
607
|
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
608
608
|
fillType: props.settingParams && props.settingParams.fillType || 0,
|
|
609
|
+
// 填充类型
|
|
610
|
+
fillTypeShow: props.settingParams && props.settingParams.fillTypeShow || true,
|
|
611
|
+
// 填充类型是否显示
|
|
609
612
|
elevationMarking: props.settingParams && props.settingParams.elevationMarking || true,
|
|
613
|
+
// 高程标注
|
|
610
614
|
firstCurve: props.settingParams && props.settingParams.firstCurve !== undefined || true,
|
|
615
|
+
// 首曲线
|
|
611
616
|
firstCurveWidth: props.settingParams && props.settingParams.firstCurveWidth || 2,
|
|
617
|
+
// 首曲线宽度
|
|
618
|
+
minFirstCurveWidth: props.settingParams && props.settingParams.minFirstCurveWidth || 0,
|
|
619
|
+
// 首曲线宽度最下值
|
|
620
|
+
maxFirstCurveWidth: props.settingParams && props.settingParams.maxFirstCurveWidth || 5,
|
|
621
|
+
// 首曲线宽度最大值
|
|
612
622
|
firstCurveColor: props.settingParams && props.settingParams.firstCurveColor || "#E6A23C",
|
|
623
|
+
// 首曲线颜色
|
|
613
624
|
rememberCurve: props.settingParams && props.settingParams.rememberCurve !== undefined || true,
|
|
625
|
+
// 计曲线
|
|
614
626
|
rememberCurveWidth: props.settingParams && props.settingParams.rememberCurveWidth || 4,
|
|
627
|
+
// 计曲线宽度
|
|
628
|
+
minRememberCurveWidth: props.settingParams && props.settingParams.minRememberCurveWidth || 0,
|
|
629
|
+
// 计曲线宽度最小值
|
|
630
|
+
maxRememberCurveWidth: props.settingParams && props.settingParams.maxRememberCurveWidth || 5,
|
|
631
|
+
// 计曲线宽度最大值
|
|
615
632
|
rememberCurveColor: props.settingParams && props.settingParams.rememberCurveColor || "#409EFF",
|
|
633
|
+
// 计曲线颜色
|
|
616
634
|
intervalCurve: props.settingParams && props.settingParams.intervalCurve !== undefined || true,
|
|
635
|
+
// 间曲线
|
|
617
636
|
intervalCurveWidth: props.settingParams && props.settingParams.intervalCurveWidth || 1,
|
|
637
|
+
// 间曲线宽度
|
|
618
638
|
intervalCurveColor: props.settingParams && props.settingParams.intervalCurveColor || "#67C23A",
|
|
639
|
+
// 间曲线颜色
|
|
619
640
|
extraCurve: props.settingParams && props.settingParams.extraCurve !== undefined || true,
|
|
641
|
+
// 助曲线
|
|
620
642
|
extraCurveWidth: props.settingParams && props.settingParams.extraCurveWidth || 1,
|
|
643
|
+
// 助曲线宽度
|
|
644
|
+
minExtraCurveWidth: props.settingParams && props.settingParams.minExtraCurveWidth || 1,
|
|
645
|
+
// 助曲线宽度最小值
|
|
646
|
+
maxExtraCurveWidth: props.settingParams && props.settingParams.maxExtraCurveWidth || 1,
|
|
647
|
+
// 助曲线宽度最大值
|
|
621
648
|
extraCurveColor: props.settingParams && props.settingParams.extraCurveColor || "#F56C6C",
|
|
649
|
+
// 助曲线颜色
|
|
622
650
|
fillStyle: props.settingParams && props.settingParams.fillStyle || 1,
|
|
651
|
+
// 填充样式
|
|
623
652
|
colorTableHeight: props.settingParams && props.settingParams.colorTableHeight || [1000, 2000, 3000, 4000, 8000],
|
|
624
653
|
colorTable: props.settingParams && props.settingParams.colorTable || ["#00FF00", "#0000FF", "#FFFF00", "#FF7F00", "#FF0000"],
|
|
625
654
|
colorImage: props.settingParams && props.settingParams.colorImage || "0",
|
|
655
|
+
// 渐变颜色
|
|
626
656
|
minHeight: props.settingParams && props.settingParams.minHeight || 300,
|
|
657
|
+
// 最小高度
|
|
627
658
|
maxHeight: props.settingParams && props.settingParams.maxHeight || 5100,
|
|
628
|
-
|
|
659
|
+
// 最大高度
|
|
660
|
+
surfaceAlpha: props.settingParams && props.settingParams.surfaceAlpha || 0.6 // 面透明度
|
|
661
|
+
|
|
629
662
|
});
|
|
630
663
|
let viewModel = null;
|
|
631
664
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
@@ -857,7 +890,7 @@ const __default__ = {
|
|
|
857
890
|
|
|
858
891
|
const _component_kq_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-button");
|
|
859
892
|
|
|
860
|
-
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
893
|
+
return (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", _hoisted_1, [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
861
894
|
gutter: 20
|
|
862
895
|
}, {
|
|
863
896
|
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, {
|
|
@@ -906,11 +939,17 @@ const __default__ = {
|
|
|
906
939
|
_: 1
|
|
907
940
|
/* STABLE */
|
|
908
941
|
|
|
909
|
-
}
|
|
942
|
+
}, 512
|
|
943
|
+
/* NEED_PATCH */
|
|
944
|
+
), [[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillTypeShow]]), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, {
|
|
910
945
|
class: "kq3d-isoline-analysis-tip"
|
|
911
946
|
}, {
|
|
912
|
-
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p",
|
|
913
|
-
|
|
947
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("p", {
|
|
948
|
+
style: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeStyle)({
|
|
949
|
+
'margin-top': (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillTypeShow ? '16px' : '0px'
|
|
950
|
+
})
|
|
951
|
+
}, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(language).skylineTips), 5
|
|
952
|
+
/* TEXT, STYLE */
|
|
914
953
|
)]),
|
|
915
954
|
_: 1
|
|
916
955
|
/* STABLE */
|
|
@@ -984,12 +1023,12 @@ const __default__ = {
|
|
|
984
1023
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
985
1024
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
986
1025
|
step: 0.1,
|
|
987
|
-
min: 0,
|
|
988
|
-
max:
|
|
1026
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
1027
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
989
1028
|
onInput: _cache[6] || (_cache[6] = $event => paramsChanged('firstCurveWidth'))
|
|
990
1029
|
}, null, 8
|
|
991
1030
|
/* PROPS */
|
|
992
|
-
, ["modelValue", "step"])]),
|
|
1031
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
993
1032
|
_: 1
|
|
994
1033
|
/* STABLE */
|
|
995
1034
|
|
|
@@ -999,14 +1038,14 @@ const __default__ = {
|
|
|
999
1038
|
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_number, {
|
|
1000
1039
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
1001
1040
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
1002
|
-
min: 0,
|
|
1003
|
-
max:
|
|
1041
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
1042
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
1004
1043
|
step: 0.1,
|
|
1005
1044
|
onInput: _cache[8] || (_cache[8] = $event => paramsChanged('firstCurveWidth')),
|
|
1006
1045
|
"controls-position": "right"
|
|
1007
1046
|
}, null, 8
|
|
1008
1047
|
/* PROPS */
|
|
1009
|
-
, ["modelValue", "step"])]),
|
|
1048
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
1010
1049
|
_: 1
|
|
1011
1050
|
/* STABLE */
|
|
1012
1051
|
|
|
@@ -1082,12 +1121,12 @@ const __default__ = {
|
|
|
1082
1121
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
1083
1122
|
"onUpdate:modelValue": _cache[13] || (_cache[13] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
1084
1123
|
step: 0.1,
|
|
1085
|
-
min: 0,
|
|
1086
|
-
max:
|
|
1124
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
1125
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
1087
1126
|
onInput: _cache[14] || (_cache[14] = $event => paramsChanged('rememberCurveWidth'))
|
|
1088
1127
|
}, null, 8
|
|
1089
1128
|
/* PROPS */
|
|
1090
|
-
, ["modelValue", "step"])]),
|
|
1129
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
1091
1130
|
_: 1
|
|
1092
1131
|
/* STABLE */
|
|
1093
1132
|
|
|
@@ -1097,14 +1136,14 @@ const __default__ = {
|
|
|
1097
1136
|
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_number, {
|
|
1098
1137
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
1099
1138
|
"onUpdate:modelValue": _cache[15] || (_cache[15] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
1100
|
-
min: 0,
|
|
1101
|
-
max:
|
|
1139
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
1140
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
1102
1141
|
step: 0.1,
|
|
1103
1142
|
onInput: _cache[16] || (_cache[16] = $event => paramsChanged('rememberCurveWidth')),
|
|
1104
1143
|
"controls-position": "right"
|
|
1105
1144
|
}, null, 8
|
|
1106
1145
|
/* PROPS */
|
|
1107
|
-
, ["modelValue", "step"])]),
|
|
1146
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
1108
1147
|
_: 1
|
|
1109
1148
|
/* STABLE */
|
|
1110
1149
|
|
|
@@ -1180,12 +1219,12 @@ const __default__ = {
|
|
|
1180
1219
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
1181
1220
|
"onUpdate:modelValue": _cache[21] || (_cache[21] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
1182
1221
|
step: 0.1,
|
|
1183
|
-
min: 0,
|
|
1184
|
-
max:
|
|
1222
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
1223
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
1185
1224
|
onInput: _cache[22] || (_cache[22] = $event => paramsChanged('intervalCurveWidth'))
|
|
1186
1225
|
}, null, 8
|
|
1187
1226
|
/* PROPS */
|
|
1188
|
-
, ["modelValue", "step"])]),
|
|
1227
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
1189
1228
|
_: 1
|
|
1190
1229
|
/* STABLE */
|
|
1191
1230
|
|
|
@@ -1195,14 +1234,14 @@ const __default__ = {
|
|
|
1195
1234
|
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_number, {
|
|
1196
1235
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
1197
1236
|
"onUpdate:modelValue": _cache[23] || (_cache[23] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
1198
|
-
min: 0,
|
|
1199
|
-
max:
|
|
1237
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
1238
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
1200
1239
|
step: 0.1,
|
|
1201
1240
|
onInput: _cache[24] || (_cache[24] = $event => paramsChanged('intervalCurveWidth')),
|
|
1202
1241
|
"controls-position": "right"
|
|
1203
1242
|
}, null, 8
|
|
1204
1243
|
/* PROPS */
|
|
1205
|
-
, ["modelValue", "step"])]),
|
|
1244
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
1206
1245
|
_: 1
|
|
1207
1246
|
/* STABLE */
|
|
1208
1247
|
|
|
@@ -1278,12 +1317,12 @@ const __default__ = {
|
|
|
1278
1317
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
1279
1318
|
"onUpdate:modelValue": _cache[29] || (_cache[29] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
1280
1319
|
step: 0.1,
|
|
1281
|
-
min: 0,
|
|
1282
|
-
max:
|
|
1320
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
1321
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
1283
1322
|
onInput: _cache[30] || (_cache[30] = $event => paramsChanged('extraCurveWidth'))
|
|
1284
1323
|
}, null, 8
|
|
1285
1324
|
/* PROPS */
|
|
1286
|
-
, ["modelValue", "step"])]),
|
|
1325
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
1287
1326
|
_: 1
|
|
1288
1327
|
/* STABLE */
|
|
1289
1328
|
|
|
@@ -1293,14 +1332,14 @@ const __default__ = {
|
|
|
1293
1332
|
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_number, {
|
|
1294
1333
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
1295
1334
|
"onUpdate:modelValue": _cache[31] || (_cache[31] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
1296
|
-
min: 0,
|
|
1297
|
-
max:
|
|
1335
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
1336
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
1298
1337
|
step: 0.1,
|
|
1299
1338
|
onInput: _cache[32] || (_cache[32] = $event => paramsChanged('extraCurveWidth')),
|
|
1300
1339
|
"controls-position": "right"
|
|
1301
1340
|
}, null, 8
|
|
1302
1341
|
/* PROPS */
|
|
1303
|
-
, ["modelValue", "step"])]),
|
|
1342
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
1304
1343
|
_: 1
|
|
1305
1344
|
/* STABLE */
|
|
1306
1345
|
|
|
@@ -1701,7 +1740,7 @@ const __default__ = {
|
|
|
1701
1740
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
1702
1741
|
class: "kq3d-isoline-analysis-legend",
|
|
1703
1742
|
src: item.src,
|
|
1704
|
-
alt: ""
|
|
1743
|
+
alt: "无"
|
|
1705
1744
|
}, null, 8
|
|
1706
1745
|
/* PROPS */
|
|
1707
1746
|
, _hoisted_9)]),
|
|
@@ -1803,12 +1842,12 @@ const __default__ = {
|
|
|
1803
1842
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
1804
1843
|
"onUpdate:modelValue": _cache[59] || (_cache[59] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
1805
1844
|
step: 0.1,
|
|
1806
|
-
min: 0,
|
|
1807
|
-
max:
|
|
1845
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
1846
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
1808
1847
|
onInput: _cache[60] || (_cache[60] = $event => paramsChanged('firstCurveWidth'))
|
|
1809
1848
|
}, null, 8
|
|
1810
1849
|
/* PROPS */
|
|
1811
|
-
, ["modelValue", "step"])]),
|
|
1850
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
1812
1851
|
_: 1
|
|
1813
1852
|
/* STABLE */
|
|
1814
1853
|
|
|
@@ -1818,14 +1857,14 @@ const __default__ = {
|
|
|
1818
1857
|
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_number, {
|
|
1819
1858
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth,
|
|
1820
1859
|
"onUpdate:modelValue": _cache[61] || (_cache[61] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).firstCurveWidth = $event),
|
|
1821
|
-
min: 0,
|
|
1822
|
-
max:
|
|
1860
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFirstCurveWidth,
|
|
1861
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFirstCurveWidth,
|
|
1823
1862
|
step: 0.1,
|
|
1824
1863
|
onInput: _cache[62] || (_cache[62] = $event => paramsChanged('firstCurveWidth')),
|
|
1825
1864
|
"controls-position": "right"
|
|
1826
1865
|
}, null, 8
|
|
1827
1866
|
/* PROPS */
|
|
1828
|
-
, ["modelValue", "step"])]),
|
|
1867
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
1829
1868
|
_: 1
|
|
1830
1869
|
/* STABLE */
|
|
1831
1870
|
|
|
@@ -1901,12 +1940,12 @@ const __default__ = {
|
|
|
1901
1940
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
1902
1941
|
"onUpdate:modelValue": _cache[67] || (_cache[67] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
1903
1942
|
step: 0.1,
|
|
1904
|
-
min: 0,
|
|
1905
|
-
max:
|
|
1943
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
1944
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
1906
1945
|
onInput: _cache[68] || (_cache[68] = $event => paramsChanged('rememberCurveWidth'))
|
|
1907
1946
|
}, null, 8
|
|
1908
1947
|
/* PROPS */
|
|
1909
|
-
, ["modelValue", "step"])]),
|
|
1948
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
1910
1949
|
_: 1
|
|
1911
1950
|
/* STABLE */
|
|
1912
1951
|
|
|
@@ -1916,14 +1955,14 @@ const __default__ = {
|
|
|
1916
1955
|
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_number, {
|
|
1917
1956
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth,
|
|
1918
1957
|
"onUpdate:modelValue": _cache[69] || (_cache[69] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).rememberCurveWidth = $event),
|
|
1919
|
-
min: 0,
|
|
1920
|
-
max:
|
|
1958
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minRememberCurveWidth,
|
|
1959
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxRememberCurveWidth,
|
|
1921
1960
|
step: 0.1,
|
|
1922
1961
|
onInput: _cache[70] || (_cache[70] = $event => paramsChanged('rememberCurveWidth')),
|
|
1923
1962
|
"controls-position": "right"
|
|
1924
1963
|
}, null, 8
|
|
1925
1964
|
/* PROPS */
|
|
1926
|
-
, ["modelValue", "step"])]),
|
|
1965
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
1927
1966
|
_: 1
|
|
1928
1967
|
/* STABLE */
|
|
1929
1968
|
|
|
@@ -1999,12 +2038,12 @@ const __default__ = {
|
|
|
1999
2038
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
2000
2039
|
"onUpdate:modelValue": _cache[75] || (_cache[75] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
2001
2040
|
step: 0.1,
|
|
2002
|
-
min: 0,
|
|
2003
|
-
max:
|
|
2041
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
2042
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
2004
2043
|
onInput: _cache[76] || (_cache[76] = $event => paramsChanged('intervalCurveWidth'))
|
|
2005
2044
|
}, null, 8
|
|
2006
2045
|
/* PROPS */
|
|
2007
|
-
, ["modelValue", "step"])]),
|
|
2046
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
2008
2047
|
_: 1
|
|
2009
2048
|
/* STABLE */
|
|
2010
2049
|
|
|
@@ -2014,14 +2053,14 @@ const __default__ = {
|
|
|
2014
2053
|
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_number, {
|
|
2015
2054
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth,
|
|
2016
2055
|
"onUpdate:modelValue": _cache[77] || (_cache[77] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).intervalCurveWidth = $event),
|
|
2017
|
-
min: 0,
|
|
2018
|
-
max:
|
|
2056
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minIntervalCurveWidth,
|
|
2057
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxIntervalCurveWidth,
|
|
2019
2058
|
step: 0.1,
|
|
2020
2059
|
onInput: _cache[78] || (_cache[78] = $event => paramsChanged('intervalCurveWidth')),
|
|
2021
2060
|
"controls-position": "right"
|
|
2022
2061
|
}, null, 8
|
|
2023
2062
|
/* PROPS */
|
|
2024
|
-
, ["modelValue", "step"])]),
|
|
2063
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
2025
2064
|
_: 1
|
|
2026
2065
|
/* STABLE */
|
|
2027
2066
|
|
|
@@ -2097,12 +2136,12 @@ const __default__ = {
|
|
|
2097
2136
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
2098
2137
|
"onUpdate:modelValue": _cache[83] || (_cache[83] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
2099
2138
|
step: 0.1,
|
|
2100
|
-
min: 0,
|
|
2101
|
-
max:
|
|
2139
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
2140
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
2102
2141
|
onInput: _cache[84] || (_cache[84] = $event => paramsChanged('extraCurveWidth'))
|
|
2103
2142
|
}, null, 8
|
|
2104
2143
|
/* PROPS */
|
|
2105
|
-
, ["modelValue", "step"])]),
|
|
2144
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
2106
2145
|
_: 1
|
|
2107
2146
|
/* STABLE */
|
|
2108
2147
|
|
|
@@ -2112,14 +2151,14 @@ const __default__ = {
|
|
|
2112
2151
|
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_number, {
|
|
2113
2152
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth,
|
|
2114
2153
|
"onUpdate:modelValue": _cache[85] || (_cache[85] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).extraCurveWidth = $event),
|
|
2115
|
-
min: 0,
|
|
2116
|
-
max:
|
|
2154
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minExtraCurveWidth,
|
|
2155
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxExtraCurveWidth,
|
|
2117
2156
|
step: 0.1,
|
|
2118
2157
|
onInput: _cache[86] || (_cache[86] = $event => paramsChanged('extraCurveWidth')),
|
|
2119
2158
|
"controls-position": "right"
|
|
2120
2159
|
}, null, 8
|
|
2121
2160
|
/* PROPS */
|
|
2122
|
-
, ["modelValue", "step"])]),
|
|
2161
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
2123
2162
|
_: 1
|
|
2124
2163
|
/* STABLE */
|
|
2125
2164
|
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"2.7.
|
|
1
|
+
{"name":"@kq_npm/client3d_webgl_vue","description":"KQGIS Client3D for Vue.js","version":"2.7.4-beta","homepage":"","keywords":["KQGIS","webGL","Vue"],"browserslist":["> 1%","last 2 versions","not dead","not ie 11"],"author":"KQWEB GROUP","license":"Apache-2.0","dependencies":{"colorcolor":"^1.1.1","echarts":"^5.3.3","js-cookie":"^3.0.1","omit.js":"^2.0.2","save":"^2.5.0","tinycolor2":"^1.4.2","vue-i18n":"^9.2.0-beta.36","xlsx":"^0.18.5","css-vars-ponyfill":"^2.4.8","html2canvas":"^1.4.1","xe-utils":"^3.5.4"}}
|