@kq_npm/client3d_webgl_vue 4.5.47 → 4.5.49
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 +14 -8
- package/aspectanalysis/index.js +8 -3
- package/boxclip/index.js +8 -3
- package/buildpointmodel/index.js +8 -3
- package/buildpolygonmodel/index.js +110 -49
- package/buildpolylinemodel/index.js +8 -3
- package/clientPrint/index.js +548 -72
- package/excavatefillanalysis/index.js +8 -3
- package/fixedzoomin/index.js +7 -5
- package/fixedzoomout/index.js +7 -5
- package/flight/index.js +8 -3
- package/floodanalysis/index.js +8 -3
- package/geologicalbodyanalysis/index.js +8 -3
- package/gpuspatialquery/index.js +8 -3
- package/heatmap3d/index.js +8 -3
- package/index.js +513 -66
- package/isolineanalysis/index.js +8 -3
- package/limitheightanalysis/index.js +8 -3
- package/measure/index.js +8 -3
- package/modelFlat/index.js +8 -3
- package/modeledit/index.js +8 -3
- package/modelexcavate/index.js +8 -3
- package/modelmaterialedit/index.js +596 -0
- package/modelmaterialedit/style/index.js +3 -0
- package/modelmaterialedit/style/modelmaterialedit.css +1 -0
- package/modelprofileanalysis/index.js +8 -3
- package/modelselect/index.js +8 -3
- package/package.json +1 -1
- package/planeclip/index.js +8 -3
- package/scaneffect/index.js +8 -3
- package/sceneadvancedtoimage/index.js +8 -3
- package/sceneapp/index.js +548 -72
- package/sceneview/index.js +548 -72
- package/shadowanalysis/index.js +8 -3
- package/sightlineanalysis/index.js +8 -3
- package/skylineanalysis/index.js +8 -3
- package/slopeanalysis/index.js +8 -3
- package/slopeaspectanalysis/index.js +8 -3
- package/style.css +1 -1
- package/terrainoperation/index.js +8 -3
- package/terrainprofileanalysis/index.js +8 -3
- package/videofusion/index.js +8 -3
- package/videoproject/index.js +8 -3
- package/webgl.es.js +537 -121
- package/windyslicing/index.js +8 -3
- package/wireframesketch/index.js +8 -3
package/sceneview/index.js
CHANGED
|
@@ -1958,6 +1958,7 @@ let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive
|
|
|
1958
1958
|
floorImageHeight:props?.settingParams?.floorImageHeight ?? 9,
|
|
1959
1959
|
minFloorImage: props?.settingParams?.minFloorImage ?? 1, // 贴图最小值
|
|
1960
1960
|
maxFloorImage: props?.settingParams?.maxFloorImage ?? 10 ,// 贴图最大值
|
|
1961
|
+
pyramidHeight: props?.settingParams?.pyramidHeight ?? 20 ,//金字塔顶高度
|
|
1961
1962
|
});
|
|
1962
1963
|
let SMID_Data = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(["KID>1", "KID<2"]);
|
|
1963
1964
|
// 组件容器Ref
|
|
@@ -1996,6 +1997,14 @@ const floorTopTypes = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.r
|
|
|
1996
1997
|
{
|
|
1997
1998
|
name: locale.value.webgl.flatRoofParapet,
|
|
1998
1999
|
value: "flatRoofParapet"
|
|
2000
|
+
},
|
|
2001
|
+
{
|
|
2002
|
+
name: locale.value.webgl.pyramidalRoof,
|
|
2003
|
+
value: "pyramidalRoof"
|
|
2004
|
+
},
|
|
2005
|
+
{
|
|
2006
|
+
name: locale.value.webgl.doublePitchRoof,
|
|
2007
|
+
value: "doublePitchRoof"
|
|
1999
2008
|
}
|
|
2000
2009
|
]);
|
|
2001
2010
|
// 重复模式
|
|
@@ -2221,7 +2230,7 @@ return (_ctx, _cache) => {
|
|
|
2221
2230
|
: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true),
|
|
2222
2231
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_collapse, {
|
|
2223
2232
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).collapseValue,
|
|
2224
|
-
"onUpdate:modelValue": _cache[
|
|
2233
|
+
"onUpdate:modelValue": _cache[69] || (_cache[69] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).collapseValue) = $event)),
|
|
2225
2234
|
accordion: ""
|
|
2226
2235
|
}, {
|
|
2227
2236
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
@@ -2311,6 +2320,53 @@ return (_ctx, _cache) => {
|
|
|
2311
2320
|
}, 512 /* NEED_PATCH */), [
|
|
2312
2321
|
[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorTopType=='flatRoofParapet']
|
|
2313
2322
|
]),
|
|
2323
|
+
(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, null, {
|
|
2324
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2325
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
2326
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(t)('webgl.pyramidHeight') + '(m)'
|
|
2327
|
+
}, {
|
|
2328
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2329
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, { style: {"display":"flex"} }, {
|
|
2330
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2331
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, { span: 16 }, {
|
|
2332
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2333
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2334
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).pyramidHeight,
|
|
2335
|
+
"onUpdate:modelValue": _cache[19] || (_cache[19] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).pyramidHeight) = $event)),
|
|
2336
|
+
onChange: _cache[20] || (_cache[20] = $event => (paramsChanged('pyramidHeight'))),
|
|
2337
|
+
onClick: _cache[21] || (_cache[21] = $event => (paramsChanged('pyramidHeight'))),
|
|
2338
|
+
step: 0.2,
|
|
2339
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minParapetWallHeight,
|
|
2340
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxParapetWallHeight
|
|
2341
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])
|
|
2342
|
+
]),
|
|
2343
|
+
_: 1 /* STABLE */
|
|
2344
|
+
}),
|
|
2345
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_col, { span: 8 }, {
|
|
2346
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2347
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2348
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).pyramidHeight,
|
|
2349
|
+
"onUpdate:modelValue": _cache[22] || (_cache[22] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).pyramidHeight) = $event)),
|
|
2350
|
+
onChange: _cache[23] || (_cache[23] = $event => (paramsChanged('pyramidHeight'))),
|
|
2351
|
+
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minParapetWallHeight,
|
|
2352
|
+
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxParapetWallHeight,
|
|
2353
|
+
step: 0.2,
|
|
2354
|
+
"controls-position": "right"
|
|
2355
|
+
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])
|
|
2356
|
+
]),
|
|
2357
|
+
_: 1 /* STABLE */
|
|
2358
|
+
})
|
|
2359
|
+
]),
|
|
2360
|
+
_: 1 /* STABLE */
|
|
2361
|
+
})
|
|
2362
|
+
]),
|
|
2363
|
+
_: 1 /* STABLE */
|
|
2364
|
+
}, 8 /* PROPS */, ["label"])
|
|
2365
|
+
]),
|
|
2366
|
+
_: 1 /* STABLE */
|
|
2367
|
+
}, 512 /* NEED_PATCH */), [
|
|
2368
|
+
[external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.vShow, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorTopType=='pyramidalRoof']
|
|
2369
|
+
]),
|
|
2314
2370
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
2315
2371
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2316
2372
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
@@ -2323,8 +2379,8 @@ return (_ctx, _cache) => {
|
|
|
2323
2379
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2324
2380
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_color_picker, {
|
|
2325
2381
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillColor,
|
|
2326
|
-
"onUpdate:modelValue": _cache[
|
|
2327
|
-
onChange: _cache[
|
|
2382
|
+
"onUpdate:modelValue": _cache[24] || (_cache[24] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).fillColor) = $event)),
|
|
2383
|
+
onChange: _cache[25] || (_cache[25] = $event => (paramsChanged('fillColor')))
|
|
2328
2384
|
}, null, 8 /* PROPS */, ["modelValue"])
|
|
2329
2385
|
]),
|
|
2330
2386
|
_: 1 /* STABLE */
|
|
@@ -2348,8 +2404,8 @@ return (_ctx, _cache) => {
|
|
|
2348
2404
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2349
2405
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
2350
2406
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImage,
|
|
2351
|
-
"onUpdate:modelValue": _cache[
|
|
2352
|
-
onChange: _cache[
|
|
2407
|
+
"onUpdate:modelValue": _cache[26] || (_cache[26] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImage) = $event)),
|
|
2408
|
+
onChange: _cache[27] || (_cache[27] = $event => (paramsChanged('floorImage'))),
|
|
2353
2409
|
style: {"width":"100%"}
|
|
2354
2410
|
}, {
|
|
2355
2411
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
@@ -2382,8 +2438,8 @@ return (_ctx, _cache) => {
|
|
|
2382
2438
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2383
2439
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
2384
2440
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).repetitionType,
|
|
2385
|
-
"onUpdate:modelValue": _cache[
|
|
2386
|
-
onChange: _cache[
|
|
2441
|
+
"onUpdate:modelValue": _cache[28] || (_cache[28] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).repetitionType) = $event)),
|
|
2442
|
+
onChange: _cache[29] || (_cache[29] = $event => (paramsChanged('repetitionType'))),
|
|
2387
2443
|
style: {"width":"100%"}
|
|
2388
2444
|
}, {
|
|
2389
2445
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
@@ -2418,9 +2474,9 @@ return (_ctx, _cache) => {
|
|
|
2418
2474
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2419
2475
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2420
2476
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageWidth,
|
|
2421
|
-
"onUpdate:modelValue": _cache[
|
|
2422
|
-
onChange: _cache[
|
|
2423
|
-
onClick: _cache[
|
|
2477
|
+
"onUpdate:modelValue": _cache[30] || (_cache[30] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageWidth) = $event)),
|
|
2478
|
+
onChange: _cache[31] || (_cache[31] = $event => (paramsChanged('floorImageWidth'))),
|
|
2479
|
+
onClick: _cache[32] || (_cache[32] = $event => (paramsChanged('floorImageWidth'))),
|
|
2424
2480
|
step: 1,
|
|
2425
2481
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorImage,
|
|
2426
2482
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorImage
|
|
@@ -2432,8 +2488,8 @@ return (_ctx, _cache) => {
|
|
|
2432
2488
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2433
2489
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2434
2490
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageWidth,
|
|
2435
|
-
"onUpdate:modelValue": _cache[
|
|
2436
|
-
onChange: _cache[
|
|
2491
|
+
"onUpdate:modelValue": _cache[33] || (_cache[33] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageWidth) = $event)),
|
|
2492
|
+
onChange: _cache[34] || (_cache[34] = $event => (paramsChanged('floorImageWidth'))),
|
|
2437
2493
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorImage,
|
|
2438
2494
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorImage,
|
|
2439
2495
|
step: 1,
|
|
@@ -2463,9 +2519,9 @@ return (_ctx, _cache) => {
|
|
|
2463
2519
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2464
2520
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2465
2521
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageHeight,
|
|
2466
|
-
"onUpdate:modelValue": _cache[
|
|
2467
|
-
onChange: _cache[
|
|
2468
|
-
onClick: _cache[
|
|
2522
|
+
"onUpdate:modelValue": _cache[35] || (_cache[35] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageHeight) = $event)),
|
|
2523
|
+
onChange: _cache[36] || (_cache[36] = $event => (paramsChanged('floorImageHeight'))),
|
|
2524
|
+
onClick: _cache[37] || (_cache[37] = $event => (paramsChanged('floorImageHeight'))),
|
|
2469
2525
|
step: 1,
|
|
2470
2526
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorImage,
|
|
2471
2527
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorImage
|
|
@@ -2477,8 +2533,8 @@ return (_ctx, _cache) => {
|
|
|
2477
2533
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2478
2534
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2479
2535
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageHeight,
|
|
2480
|
-
"onUpdate:modelValue": _cache[
|
|
2481
|
-
onChange: _cache[
|
|
2536
|
+
"onUpdate:modelValue": _cache[38] || (_cache[38] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorImageHeight) = $event)),
|
|
2537
|
+
onChange: _cache[39] || (_cache[39] = $event => (paramsChanged('floorImageHeight'))),
|
|
2482
2538
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorImage,
|
|
2483
2539
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorImage,
|
|
2484
2540
|
step: 1,
|
|
@@ -2506,8 +2562,8 @@ return (_ctx, _cache) => {
|
|
|
2506
2562
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2507
2563
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
2508
2564
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).roofImage,
|
|
2509
|
-
"onUpdate:modelValue": _cache[
|
|
2510
|
-
onChange: _cache[
|
|
2565
|
+
"onUpdate:modelValue": _cache[40] || (_cache[40] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).roofImage) = $event)),
|
|
2566
|
+
onChange: _cache[41] || (_cache[41] = $event => (paramsChanged('roofImage'))),
|
|
2511
2567
|
style: {"width":"100%"}
|
|
2512
2568
|
}, {
|
|
2513
2569
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
@@ -2551,9 +2607,9 @@ return (_ctx, _cache) => {
|
|
|
2551
2607
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2552
2608
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2553
2609
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight,
|
|
2554
|
-
"onUpdate:modelValue": _cache[
|
|
2555
|
-
onChange: _cache[
|
|
2556
|
-
onClick: _cache[
|
|
2610
|
+
"onUpdate:modelValue": _cache[42] || (_cache[42] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight) = $event)),
|
|
2611
|
+
onChange: _cache[43] || (_cache[43] = $event => (paramsChanged('baseHeight'))),
|
|
2612
|
+
onClick: _cache[44] || (_cache[44] = $event => (paramsChanged('baseHeight'))),
|
|
2557
2613
|
step: 10,
|
|
2558
2614
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minBaseHeight,
|
|
2559
2615
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxBaseHeight
|
|
@@ -2565,8 +2621,8 @@ return (_ctx, _cache) => {
|
|
|
2565
2621
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2566
2622
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2567
2623
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight,
|
|
2568
|
-
"onUpdate:modelValue": _cache[
|
|
2569
|
-
onChange: _cache[
|
|
2624
|
+
"onUpdate:modelValue": _cache[45] || (_cache[45] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight) = $event)),
|
|
2625
|
+
onChange: _cache[46] || (_cache[46] = $event => (paramsChanged('baseHeight'))),
|
|
2570
2626
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minBaseHeight,
|
|
2571
2627
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxBaseHeight,
|
|
2572
2628
|
step: 10,
|
|
@@ -2598,9 +2654,9 @@ return (_ctx, _cache) => {
|
|
|
2598
2654
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2599
2655
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2600
2656
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight,
|
|
2601
|
-
"onUpdate:modelValue": _cache[
|
|
2602
|
-
onChange: _cache[
|
|
2603
|
-
onClick: _cache[
|
|
2657
|
+
"onUpdate:modelValue": _cache[47] || (_cache[47] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight) = $event)),
|
|
2658
|
+
onChange: _cache[48] || (_cache[48] = $event => (paramsChanged('floorHeight'))),
|
|
2659
|
+
onClick: _cache[49] || (_cache[49] = $event => (paramsChanged('floorHeight'))),
|
|
2604
2660
|
step: 10,
|
|
2605
2661
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorHeight,
|
|
2606
2662
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorHeight
|
|
@@ -2612,8 +2668,8 @@ return (_ctx, _cache) => {
|
|
|
2612
2668
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2613
2669
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2614
2670
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight,
|
|
2615
|
-
"onUpdate:modelValue": _cache[
|
|
2616
|
-
onChange: _cache[
|
|
2671
|
+
"onUpdate:modelValue": _cache[50] || (_cache[50] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight) = $event)),
|
|
2672
|
+
onChange: _cache[51] || (_cache[51] = $event => (paramsChanged('floorHeight'))),
|
|
2617
2673
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorHeight,
|
|
2618
2674
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorHeight,
|
|
2619
2675
|
step: 10,
|
|
@@ -2635,7 +2691,7 @@ return (_ctx, _cache) => {
|
|
|
2635
2691
|
]),
|
|
2636
2692
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [
|
|
2637
2693
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
2638
|
-
onClick: _cache[
|
|
2694
|
+
onClick: _cache[52] || (_cache[52] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => (generated('monomer')), ["stop"])),
|
|
2639
2695
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(locale).webgl.generated,
|
|
2640
2696
|
type: "primary"
|
|
2641
2697
|
}, {
|
|
@@ -2669,9 +2725,9 @@ return (_ctx, _cache) => {
|
|
|
2669
2725
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2670
2726
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2671
2727
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorCount,
|
|
2672
|
-
"onUpdate:modelValue": _cache[
|
|
2673
|
-
onChange: _cache[
|
|
2674
|
-
onClick: _cache[
|
|
2728
|
+
"onUpdate:modelValue": _cache[53] || (_cache[53] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorCount) = $event)),
|
|
2729
|
+
onChange: _cache[54] || (_cache[54] = $event => (paramsChanged('floorCount'))),
|
|
2730
|
+
onClick: _cache[55] || (_cache[55] = $event => (paramsChanged('floorCount'))),
|
|
2675
2731
|
step: 1,
|
|
2676
2732
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorCount,
|
|
2677
2733
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorCount
|
|
@@ -2683,11 +2739,11 @@ return (_ctx, _cache) => {
|
|
|
2683
2739
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2684
2740
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2685
2741
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorCount,
|
|
2686
|
-
"onUpdate:modelValue": _cache[
|
|
2742
|
+
"onUpdate:modelValue": _cache[56] || (_cache[56] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorCount) = $event)),
|
|
2687
2743
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorCount,
|
|
2688
2744
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorCount,
|
|
2689
2745
|
step: 1,
|
|
2690
|
-
onChange: _cache[
|
|
2746
|
+
onChange: _cache[57] || (_cache[57] = $event => (paramsChanged('floorCount'))),
|
|
2691
2747
|
"controls-position": "right"
|
|
2692
2748
|
}, null, 8 /* PROPS */, ["modelValue", "min", "max"])
|
|
2693
2749
|
]),
|
|
@@ -2714,9 +2770,9 @@ return (_ctx, _cache) => {
|
|
|
2714
2770
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2715
2771
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2716
2772
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight,
|
|
2717
|
-
"onUpdate:modelValue": _cache[
|
|
2718
|
-
onChange: _cache[
|
|
2719
|
-
onClick: _cache[
|
|
2773
|
+
"onUpdate:modelValue": _cache[58] || (_cache[58] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight) = $event)),
|
|
2774
|
+
onChange: _cache[59] || (_cache[59] = $event => (paramsChanged('floorHeight'))),
|
|
2775
|
+
onClick: _cache[60] || (_cache[60] = $event => (paramsChanged('floorHeight'))),
|
|
2720
2776
|
step: 1,
|
|
2721
2777
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorHeight,
|
|
2722
2778
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorHeight
|
|
@@ -2728,8 +2784,8 @@ return (_ctx, _cache) => {
|
|
|
2728
2784
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2729
2785
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2730
2786
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight,
|
|
2731
|
-
"onUpdate:modelValue": _cache[
|
|
2732
|
-
onChange: _cache[
|
|
2787
|
+
"onUpdate:modelValue": _cache[61] || (_cache[61] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).floorHeight) = $event)),
|
|
2788
|
+
onChange: _cache[62] || (_cache[62] = $event => (paramsChanged('floorHeight'))),
|
|
2733
2789
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minFloorHeight,
|
|
2734
2790
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxFloorHeight,
|
|
2735
2791
|
step: 1,
|
|
@@ -2759,9 +2815,9 @@ return (_ctx, _cache) => {
|
|
|
2759
2815
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2760
2816
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_slider, {
|
|
2761
2817
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight,
|
|
2762
|
-
"onUpdate:modelValue": _cache[
|
|
2763
|
-
onChange: _cache[
|
|
2764
|
-
onClick: _cache[
|
|
2818
|
+
"onUpdate:modelValue": _cache[63] || (_cache[63] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight) = $event)),
|
|
2819
|
+
onChange: _cache[64] || (_cache[64] = $event => (paramsChanged('baseHeight'))),
|
|
2820
|
+
onClick: _cache[65] || (_cache[65] = $event => (paramsChanged('baseHeight'))),
|
|
2765
2821
|
step: 10,
|
|
2766
2822
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minBaseHeight,
|
|
2767
2823
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxBaseHeight
|
|
@@ -2773,8 +2829,8 @@ return (_ctx, _cache) => {
|
|
|
2773
2829
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
2774
2830
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_input_number, {
|
|
2775
2831
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight,
|
|
2776
|
-
"onUpdate:modelValue": _cache[
|
|
2777
|
-
onChange: _cache[
|
|
2832
|
+
"onUpdate:modelValue": _cache[66] || (_cache[66] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).baseHeight) = $event)),
|
|
2833
|
+
onChange: _cache[67] || (_cache[67] = $event => (paramsChanged('baseHeight'))),
|
|
2778
2834
|
min: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).minBaseHeight,
|
|
2779
2835
|
max: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).maxBaseHeight,
|
|
2780
2836
|
step: 10,
|
|
@@ -2796,7 +2852,7 @@ return (_ctx, _cache) => {
|
|
|
2796
2852
|
]),
|
|
2797
2853
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withDirectives)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [
|
|
2798
2854
|
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_button, {
|
|
2799
|
-
onClick: _cache[
|
|
2855
|
+
onClick: _cache[68] || (_cache[68] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withModifiers)($event => (generated('multi')), ["stop"])),
|
|
2800
2856
|
title: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(locale).webgl.generated,
|
|
2801
2857
|
type: "primary"
|
|
2802
2858
|
}, {
|
|
@@ -8050,6 +8106,7 @@ const _hoisted_4 = { class: "compass" }
|
|
|
8050
8106
|
|
|
8051
8107
|
|
|
8052
8108
|
|
|
8109
|
+
|
|
8053
8110
|
const __default__ = {
|
|
8054
8111
|
name: "KqSceneView"
|
|
8055
8112
|
};
|
|
@@ -8223,10 +8280,10 @@ const __exports__ = SceneViewvue_type_script_setup_true_lang_js;
|
|
|
8223
8280
|
var init_js_ = __webpack_require__(455);
|
|
8224
8281
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
8225
8282
|
;// ./src/webgl/sceneview/index.js
|
|
8226
|
-
/*
|
|
8227
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
8228
|
-
* All rights reserved.
|
|
8229
|
-
*/
|
|
8283
|
+
/*
|
|
8284
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
8285
|
+
* All rights reserved.
|
|
8286
|
+
*/
|
|
8230
8287
|
|
|
8231
8288
|
|
|
8232
8289
|
|
|
@@ -8237,6 +8294,8 @@ SceneView.install = (Vue, opts) => {
|
|
|
8237
8294
|
};
|
|
8238
8295
|
|
|
8239
8296
|
|
|
8297
|
+
|
|
8298
|
+
kq_npm_client3d_webgl_vue.KqSceneView = SceneView;
|
|
8240
8299
|
|
|
8241
8300
|
|
|
8242
8301
|
/***/ }),
|
|
@@ -13218,7 +13277,7 @@ element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage.install =
|
|
|
13218
13277
|
|
|
13219
13278
|
/* harmony default export */ __webpack_exports__.A = (element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage);
|
|
13220
13279
|
|
|
13221
|
-
_common_KqGIS__WEBPACK_IMPORTED_MODULE_1__/* .kq_npm_client_common_vue */ .
|
|
13280
|
+
_common_KqGIS__WEBPACK_IMPORTED_MODULE_1__/* .kq_npm_client_common_vue */ .yR.KqMessage = element_plus_dist_index_full_js__WEBPACK_IMPORTED_MODULE_0__.ElMessage;
|
|
13222
13281
|
|
|
13223
13282
|
|
|
13224
13283
|
/***/ }),
|
|
@@ -19775,10 +19834,10 @@ const __exports__ = FixedZoomoutvue_type_script_setup_true_lang_js;
|
|
|
19775
19834
|
var init_js_ = __webpack_require__(455);
|
|
19776
19835
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
19777
19836
|
;// ./src/webgl/fixedzoomout/index.js
|
|
19778
|
-
/*
|
|
19779
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
19780
|
-
* All rights reserved.
|
|
19781
|
-
*/
|
|
19837
|
+
/*
|
|
19838
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
19839
|
+
* All rights reserved.
|
|
19840
|
+
*/
|
|
19782
19841
|
|
|
19783
19842
|
|
|
19784
19843
|
|
|
@@ -19788,7 +19847,9 @@ FixedZoomout.install = (Vue, opts) => {
|
|
|
19788
19847
|
Vue.component(FixedZoomout.name, FixedZoomout);
|
|
19789
19848
|
};
|
|
19790
19849
|
|
|
19791
|
-
|
|
19850
|
+
|
|
19851
|
+
|
|
19852
|
+
kq_npm_client3d_webgl_vue.Kq3dFixedZoomout = FixedZoomout;
|
|
19792
19853
|
|
|
19793
19854
|
/***/ }),
|
|
19794
19855
|
|
|
@@ -27068,10 +27129,10 @@ const __exports__ = FixedZoominvue_type_script_setup_true_lang_js;
|
|
|
27068
27129
|
var init_js_ = __webpack_require__(455);
|
|
27069
27130
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
27070
27131
|
;// ./src/webgl/fixedzoomin/index.js
|
|
27071
|
-
/*
|
|
27072
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
27073
|
-
* All rights reserved.
|
|
27074
|
-
*/
|
|
27132
|
+
/*
|
|
27133
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
27134
|
+
* All rights reserved.
|
|
27135
|
+
*/
|
|
27075
27136
|
|
|
27076
27137
|
|
|
27077
27138
|
|
|
@@ -27081,7 +27142,9 @@ FixedZoomin.install = (Vue, opts) => {
|
|
|
27081
27142
|
Vue.component(FixedZoomin.name, FixedZoomin);
|
|
27082
27143
|
};
|
|
27083
27144
|
|
|
27084
|
-
|
|
27145
|
+
|
|
27146
|
+
|
|
27147
|
+
kq_npm_client3d_webgl_vue.Kq3dFixedZoomin = FixedZoomin;
|
|
27085
27148
|
|
|
27086
27149
|
/***/ }),
|
|
27087
27150
|
|
|
@@ -40143,7 +40206,7 @@ index_full_js_.ElLoading.install = (Vue, opts) => {
|
|
|
40143
40206
|
|
|
40144
40207
|
/* harmony default export */ var loading = (index_full_js_.ElLoading);
|
|
40145
40208
|
|
|
40146
|
-
common_KqGIS/* kq_npm_client_common_vue */.
|
|
40209
|
+
common_KqGIS/* kq_npm_client_common_vue */.yR.KqLoading = index_full_js_.ElLoading;
|
|
40147
40210
|
;// ./src/webgl/clientPrint/ClientPrintViewModel.js
|
|
40148
40211
|
/**
|
|
40149
40212
|
* Author: zqp
|
|
@@ -46254,7 +46317,8 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".tool-bar-wrapper-3d-component .tool-b
|
|
|
46254
46317
|
/* harmony import */ var _webgl_buildpolygonmodel__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(440);
|
|
46255
46318
|
/* harmony import */ var _webgl_buildpointmodel__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(8321);
|
|
46256
46319
|
/* harmony import */ var _webgl_buildpolylinemodel__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(9493);
|
|
46257
|
-
/* harmony import */ var
|
|
46320
|
+
/* harmony import */ var _webgl_modelmaterialedit__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(8614);
|
|
46321
|
+
/* harmony import */ var _webgl_sceneapp__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(6441);
|
|
46258
46322
|
/*
|
|
46259
46323
|
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
46260
46324
|
* All rights reserved.
|
|
@@ -46440,6 +46504,9 @@ ___CSS_LOADER_EXPORT___.push([module.id, ".tool-bar-wrapper-3d-component .tool-b
|
|
|
46440
46504
|
// 三维地理设计-构建点模型
|
|
46441
46505
|
|
|
46442
46506
|
|
|
46507
|
+
// 三维地理设计-构建点模型
|
|
46508
|
+
|
|
46509
|
+
|
|
46443
46510
|
|
|
46444
46511
|
|
|
46445
46512
|
|
|
@@ -46493,14 +46560,15 @@ const webglComponents = {
|
|
|
46493
46560
|
Kq3dSlopeAspectAnalysis: _webgl_slopeaspectanalysis__WEBPACK_IMPORTED_MODULE_35__["default"],
|
|
46494
46561
|
Kq3dSceneToHDImage: _webgl_scenetohdimage__WEBPACK_IMPORTED_MODULE_15__["default"],
|
|
46495
46562
|
Kq3dHeatmap: _webgl_heatmap3d__WEBPACK_IMPORTED_MODULE_19__["default"],
|
|
46496
|
-
KqSceneApp:
|
|
46563
|
+
KqSceneApp: _webgl_sceneapp__WEBPACK_IMPORTED_MODULE_57__["default"],
|
|
46497
46564
|
Kq3dSceneAdvancedToImage: _webgl_sceneadvancedtoimage__WEBPACK_IMPORTED_MODULE_16__["default"],
|
|
46498
46565
|
Kq3dTyphoonTrac: _webgl_typhoontrac__WEBPACK_IMPORTED_MODULE_24__["default"],
|
|
46499
46566
|
Kq3dWindySlicing: _webgl_windyslicing__WEBPACK_IMPORTED_MODULE_23__["default"],
|
|
46500
46567
|
Kq3dModelEdit: _webgl_modeledit__WEBPACK_IMPORTED_MODULE_22__["default"],
|
|
46501
46568
|
Kq3dBuildPolygonModel: _webgl_buildpolygonmodel__WEBPACK_IMPORTED_MODULE_53__["default"],
|
|
46502
46569
|
Kq3dBuildPointModel: _webgl_buildpointmodel__WEBPACK_IMPORTED_MODULE_54__["default"],
|
|
46503
|
-
Kq3dBuildPolylineModel: _webgl_buildpolylinemodel__WEBPACK_IMPORTED_MODULE_55__["default"]
|
|
46570
|
+
Kq3dBuildPolylineModel: _webgl_buildpolylinemodel__WEBPACK_IMPORTED_MODULE_55__["default"],
|
|
46571
|
+
Kq3dModelMaterialEdit: _webgl_modelmaterialedit__WEBPACK_IMPORTED_MODULE_56__["default"]
|
|
46504
46572
|
};
|
|
46505
46573
|
|
|
46506
46574
|
// 全局引入
|
|
@@ -50485,9 +50553,9 @@ BuildPointModel.install = (Vue, opts) => {
|
|
|
50485
50553
|
|
|
50486
50554
|
"use strict";
|
|
50487
50555
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
50488
|
-
/* harmony export */
|
|
50556
|
+
/* harmony export */ yR: function() { return /* binding */ kq_npm_client_common_vue; }
|
|
50489
50557
|
/* harmony export */ });
|
|
50490
|
-
/* unused harmony
|
|
50558
|
+
/* unused harmony exports kq_npm_client_leaflet_vue, kq_npm_client3d_webgl_vue */
|
|
50491
50559
|
let kq_npm_client_common_vue = (window.kq_npm_client_common_vue = window.kq_npm_client_common_vue || {});
|
|
50492
50560
|
|
|
50493
50561
|
__webpack_require__.g.kq_npm_client_common_vue = kq_npm_client_common_vue;
|
|
@@ -50496,6 +50564,413 @@ let kq_npm_client_leaflet_vue = (window.kq_npm_client_leaflet_vue = window.kq_np
|
|
|
50496
50564
|
|
|
50497
50565
|
__webpack_require__.g.kq_npm_client_leaflet_vue = kq_npm_client_leaflet_vue;
|
|
50498
50566
|
|
|
50567
|
+
let kq_npm_client3d_webgl_vue = (window.kq_npm_client3d_webgl_vue = window.kq_npm_client3d_webgl_vue || {});
|
|
50568
|
+
|
|
50569
|
+
__webpack_require__.g.kq_npm_client3d_webgl_vue = kq_npm_client3d_webgl_vue;
|
|
50570
|
+
|
|
50571
|
+
|
|
50572
|
+
|
|
50573
|
+
/***/ }),
|
|
50574
|
+
|
|
50575
|
+
/***/ 8614:
|
|
50576
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
50577
|
+
|
|
50578
|
+
"use strict";
|
|
50579
|
+
|
|
50580
|
+
// EXPORTS
|
|
50581
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
50582
|
+
"default": function() { return /* reexport */ ModelMaterialEdit; }
|
|
50583
|
+
});
|
|
50584
|
+
|
|
50585
|
+
// UNUSED EXPORTS: ModelMaterialEditViewModel
|
|
50586
|
+
|
|
50587
|
+
// EXTERNAL MODULE: external {"root":"Vue","commonjs":"vue","commonjs2":"vue","amd":"vue"}
|
|
50588
|
+
var external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_ = __webpack_require__(154);
|
|
50589
|
+
// EXTERNAL MODULE: external "@kq_npm/client_icons_vue"
|
|
50590
|
+
var client_icons_vue_ = __webpack_require__(5698);
|
|
50591
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/gis-utils"
|
|
50592
|
+
var gis_utils_ = __webpack_require__(64);
|
|
50593
|
+
// EXTERNAL MODULE: ./src/common/_ui/message/index.js
|
|
50594
|
+
var message = __webpack_require__(1092);
|
|
50595
|
+
;// ./src/webgl/modelmaterialedit/ModelMaterialEditViewModel.js
|
|
50596
|
+
/*
|
|
50597
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
50598
|
+
* All rights reserved.
|
|
50599
|
+
*/
|
|
50600
|
+
|
|
50601
|
+
class BuildPolygonModelViewModel {
|
|
50602
|
+
_options = {};
|
|
50603
|
+
_scenceView = null;
|
|
50604
|
+
constructor(scenceView, formItem) {
|
|
50605
|
+
this._scenceView = scenceView;
|
|
50606
|
+
this._options = formItem;
|
|
50607
|
+
|
|
50608
|
+
}
|
|
50609
|
+
//清除
|
|
50610
|
+
clear() {
|
|
50611
|
+
|
|
50612
|
+
}
|
|
50613
|
+
//销毁
|
|
50614
|
+
destroy() {
|
|
50615
|
+
this.clear();
|
|
50616
|
+
}
|
|
50617
|
+
}
|
|
50618
|
+
|
|
50619
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/_utils/util.js"
|
|
50620
|
+
var util_js_ = __webpack_require__(3684);
|
|
50621
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/configprovider/useGlobalConfig.js"
|
|
50622
|
+
var useGlobalConfig_js_ = __webpack_require__(5711);
|
|
50623
|
+
;// ./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./src/webgl/modelmaterialedit/ModelMaterialEdit.vue?vue&type=script&setup=true&lang=js
|
|
50624
|
+
|
|
50625
|
+
|
|
50626
|
+
const _hoisted_1 = { class: "kq3d-model-material-edit-box" }
|
|
50627
|
+
const _hoisted_2 = { class: "thumbnail-container" }
|
|
50628
|
+
const _hoisted_3 = { class: "thumbnails-grid" }
|
|
50629
|
+
const _hoisted_4 = { class: "thumbnail-name" }
|
|
50630
|
+
const _hoisted_5 = ["src", "alt"]
|
|
50631
|
+
const _hoisted_6 = { class: "thumbnail-name" }
|
|
50632
|
+
|
|
50633
|
+
;
|
|
50634
|
+
|
|
50635
|
+
|
|
50636
|
+
|
|
50637
|
+
|
|
50638
|
+
|
|
50639
|
+
|
|
50640
|
+
|
|
50641
|
+
const __default__ = {
|
|
50642
|
+
name: "Kq3dModelMaterialEdit"
|
|
50643
|
+
};
|
|
50644
|
+
|
|
50645
|
+
/* harmony default export */ var ModelMaterialEditvue_type_script_setup_true_lang_js = (/*@__PURE__*/Object.assign(__default__, {
|
|
50646
|
+
props: {
|
|
50647
|
+
mapTarget: {
|
|
50648
|
+
type: String
|
|
50649
|
+
},
|
|
50650
|
+
settingParams: {
|
|
50651
|
+
type: String
|
|
50652
|
+
},
|
|
50653
|
+
// 是否显示阴影
|
|
50654
|
+
showShadow: {
|
|
50655
|
+
type: Boolean,
|
|
50656
|
+
default: true
|
|
50657
|
+
},
|
|
50658
|
+
/**
|
|
50659
|
+
* 例:"center","topLeft","topRight","bottomLeft","bottomRight", "topCenter", "bottomCenter" {top:'16px',left:'16px'}, {top:16,left:16}
|
|
50660
|
+
*/
|
|
50661
|
+
position: [String, Object],
|
|
50662
|
+
// 是否生成HeaderTemp
|
|
50663
|
+
showHeaderTemp: {
|
|
50664
|
+
type: Boolean,
|
|
50665
|
+
default: false
|
|
50666
|
+
},
|
|
50667
|
+
// 是否折叠HeaderTemp,showHeaderTemp为true时生效
|
|
50668
|
+
isCollapseHeaderTemp: {
|
|
50669
|
+
type: Boolean,
|
|
50670
|
+
default: false
|
|
50671
|
+
},
|
|
50672
|
+
// HeaderTemp标题
|
|
50673
|
+
headerTempTitle: {
|
|
50674
|
+
type: String
|
|
50675
|
+
},
|
|
50676
|
+
// HeaderTemp图标
|
|
50677
|
+
headerTempIcon: {
|
|
50678
|
+
type: [Object, String],
|
|
50679
|
+
default: client_icons_vue_.IconModelMaterialEdit
|
|
50680
|
+
},
|
|
50681
|
+
// HeaderTemp Title&Icon的位置
|
|
50682
|
+
isRight: {
|
|
50683
|
+
type: Boolean,
|
|
50684
|
+
default: true
|
|
50685
|
+
}
|
|
50686
|
+
},
|
|
50687
|
+
setup(__props, { expose: __expose }) {
|
|
50688
|
+
|
|
50689
|
+
const { t, lang, locale } = (0,useGlobalConfig_js_.useLocale)();
|
|
50690
|
+
// 获取组件传参
|
|
50691
|
+
const props = __props;
|
|
50692
|
+
// 关联数据
|
|
50693
|
+
let formItem = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.reactive)({
|
|
50694
|
+
collapseValue: props?.settingParams?.collapseValue ?? "setting", // 默认展开属性设置
|
|
50695
|
+
materialPart: props?.settingParams?.materialPart ?? "", // 材质部位
|
|
50696
|
+
materialGroup: props?.settingParams?.materialGroup ?? "" // 材质分组
|
|
50697
|
+
});
|
|
50698
|
+
let materialParts = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([locale.value.webgl.roof, locale.value.webgl.facade]);
|
|
50699
|
+
let materialGroups = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([locale.value.webgl.wallTile, locale.value.webgl.road, locale.value.webgl.metal]);
|
|
50700
|
+
|
|
50701
|
+
let materialImages = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)([
|
|
50702
|
+
{ name: "自然风光", url: "https://picsum.photos/100/80?random=1" },
|
|
50703
|
+
{ name: "城市建筑", url: "https://picsum.photos/100/80?random=2" },
|
|
50704
|
+
{ name: "可爱动物", url: "https://picsum.photos/100/80?random=3" },
|
|
50705
|
+
{ name: "美食佳肴", url: "https://picsum.photos/100/80?random=4" },
|
|
50706
|
+
{ name: "科技产品", url: "https://picsum.photos/100/80?random=5" },
|
|
50707
|
+
{ name: "艺术设计", url: "https://picsum.photos/100/80?random=6" },
|
|
50708
|
+
{ name: "旅行记忆", url: "https://picsum.photos/100/80?random=7" },
|
|
50709
|
+
{ name: "人物肖像", url: "https://picsum.photos/100/80?random=8" },
|
|
50710
|
+
{ name: "艺术设计", url: "https://picsum.photos/100/80?random=6" },
|
|
50711
|
+
{ name: "旅行记忆", url: "https://picsum.photos/100/80?random=7" },
|
|
50712
|
+
{ name: "人物肖像", url: "https://picsum.photos/100/80?random=8" }
|
|
50713
|
+
]);
|
|
50714
|
+
let showNotification = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(false);
|
|
50715
|
+
let notificationText = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)("");
|
|
50716
|
+
// 组件容器Ref
|
|
50717
|
+
let boxRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
|
|
50718
|
+
// 生成组件默认header
|
|
50719
|
+
let headerTemp = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
50720
|
+
let headerTempRef = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)();
|
|
50721
|
+
let viewModel = null;
|
|
50722
|
+
|
|
50723
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onMounted)(() => {
|
|
50724
|
+
(0,util_js_.updatePosition)(boxRef.value, props);
|
|
50725
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(
|
|
50726
|
+
() => props.position,
|
|
50727
|
+
(newVal, oldVal) => {
|
|
50728
|
+
(0,util_js_.updatePosition)(boxRef.value, props);
|
|
50729
|
+
}
|
|
50730
|
+
);
|
|
50731
|
+
watchCreateHeaderTemp();
|
|
50732
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(
|
|
50733
|
+
() => props.showHeaderTemp,
|
|
50734
|
+
(newVal, oldVal) => {
|
|
50735
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.nextTick)(() => {
|
|
50736
|
+
watchCreateHeaderTemp();
|
|
50737
|
+
});
|
|
50738
|
+
}
|
|
50739
|
+
);
|
|
50740
|
+
|
|
50741
|
+
gis_utils_.utils.getWebMap(props.mapTarget, scenceView => {
|
|
50742
|
+
if (scenceView) {
|
|
50743
|
+
viewModel = new BuildPolygonModelViewModel(scenceView, formItem);
|
|
50744
|
+
}
|
|
50745
|
+
});
|
|
50746
|
+
});
|
|
50747
|
+
|
|
50748
|
+
/**
|
|
50749
|
+
* @description 监听header生成
|
|
50750
|
+
*/
|
|
50751
|
+
const watchCreateHeaderTemp = () => {
|
|
50752
|
+
if (props.showHeaderTemp) {
|
|
50753
|
+
// 生成headerTemp
|
|
50754
|
+
headerTemp.value = (0,util_js_.createHeaderTemp)(boxRef.value, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toRefs)(props), headerTempRef, "webgl.modelMaterialEditTitle");
|
|
50755
|
+
}
|
|
50756
|
+
};
|
|
50757
|
+
//
|
|
50758
|
+
function paramsChanged(key) {}
|
|
50759
|
+
// 添加图片
|
|
50760
|
+
function addImage(){
|
|
50761
|
+
|
|
50762
|
+
}
|
|
50763
|
+
function clear() {
|
|
50764
|
+
viewModel?.clear();
|
|
50765
|
+
}
|
|
50766
|
+
// 销毁
|
|
50767
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.onBeforeUnmount)(() => {
|
|
50768
|
+
clear();
|
|
50769
|
+
});
|
|
50770
|
+
|
|
50771
|
+
__expose({});
|
|
50772
|
+
|
|
50773
|
+
return (_ctx, _cache) => {
|
|
50774
|
+
const _component_kq_option = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-option")
|
|
50775
|
+
const _component_kq_select = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-select")
|
|
50776
|
+
const _component_kq_row = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-row")
|
|
50777
|
+
const _component_kq_form_item = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form-item")
|
|
50778
|
+
const _component_kq_radio_button = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-radio-button")
|
|
50779
|
+
const _component_kq_radio_group = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-radio-group")
|
|
50780
|
+
const _component_kq_form = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveComponent)("kq-form")
|
|
50781
|
+
|
|
50782
|
+
return ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("section", {
|
|
50783
|
+
class: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.normalizeClass)(["kq3d-model-material-edit", { 'kq-box-shadow': __props.showShadow }]),
|
|
50784
|
+
ref_key: "boxRef",
|
|
50785
|
+
ref: boxRef
|
|
50786
|
+
}, [
|
|
50787
|
+
(__props.showHeaderTemp)
|
|
50788
|
+
? ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createBlock)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.resolveDynamicComponent)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(headerTemp)), {
|
|
50789
|
+
key: 0,
|
|
50790
|
+
ref_key: "headerTempRef",
|
|
50791
|
+
ref: headerTempRef
|
|
50792
|
+
}, null, 512 /* NEED_PATCH */))
|
|
50793
|
+
: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createCommentVNode)("v-if", true),
|
|
50794
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_1, [
|
|
50795
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form, {
|
|
50796
|
+
"label-width": (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(lang) === 'zh' ? '100px' : '120px',
|
|
50797
|
+
"label-position": "left"
|
|
50798
|
+
}, {
|
|
50799
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50800
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
50801
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50802
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
50803
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(locale).webgl.materialPart
|
|
50804
|
+
}, {
|
|
50805
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50806
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, { style: {"display":"flex"} }, {
|
|
50807
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50808
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
50809
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).materialPart,
|
|
50810
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).materialPart) = $event)),
|
|
50811
|
+
onChange: _cache[1] || (_cache[1] = $event => (paramsChanged('materialPart'))),
|
|
50812
|
+
style: {"width":"100%"}
|
|
50813
|
+
}, {
|
|
50814
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50815
|
+
((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)(materialParts), (item, index) => {
|
|
50816
|
+
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, {
|
|
50817
|
+
label: item,
|
|
50818
|
+
key: index,
|
|
50819
|
+
value: item
|
|
50820
|
+
}, null, 8 /* PROPS */, ["label", "value"]))
|
|
50821
|
+
}), 128 /* KEYED_FRAGMENT */))
|
|
50822
|
+
]),
|
|
50823
|
+
_: 1 /* STABLE */
|
|
50824
|
+
}, 8 /* PROPS */, ["modelValue"])
|
|
50825
|
+
]),
|
|
50826
|
+
_: 1 /* STABLE */
|
|
50827
|
+
})
|
|
50828
|
+
]),
|
|
50829
|
+
_: 1 /* STABLE */
|
|
50830
|
+
}, 8 /* PROPS */, ["label"])
|
|
50831
|
+
]),
|
|
50832
|
+
_: 1 /* STABLE */
|
|
50833
|
+
}),
|
|
50834
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
50835
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50836
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
50837
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(locale).webgl.materialGroup
|
|
50838
|
+
}, {
|
|
50839
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50840
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, { style: {"display":"flex"} }, {
|
|
50841
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50842
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_select, {
|
|
50843
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).materialGroup,
|
|
50844
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).materialGroup) = $event)),
|
|
50845
|
+
onChange: _cache[3] || (_cache[3] = $event => (paramsChanged('materialGroup'))),
|
|
50846
|
+
style: {"width":"100%"}
|
|
50847
|
+
}, {
|
|
50848
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50849
|
+
((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)(materialGroups), (item, index) => {
|
|
50850
|
+
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, {
|
|
50851
|
+
label: item,
|
|
50852
|
+
key: index,
|
|
50853
|
+
value: item
|
|
50854
|
+
}, null, 8 /* PROPS */, ["label", "value"]))
|
|
50855
|
+
}), 128 /* KEYED_FRAGMENT */))
|
|
50856
|
+
]),
|
|
50857
|
+
_: 1 /* STABLE */
|
|
50858
|
+
}, 8 /* PROPS */, ["modelValue"])
|
|
50859
|
+
]),
|
|
50860
|
+
_: 1 /* STABLE */
|
|
50861
|
+
})
|
|
50862
|
+
]),
|
|
50863
|
+
_: 1 /* STABLE */
|
|
50864
|
+
}, 8 /* PROPS */, ["label"])
|
|
50865
|
+
]),
|
|
50866
|
+
_: 1 /* STABLE */
|
|
50867
|
+
}),
|
|
50868
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, null, {
|
|
50869
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50870
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_2, [
|
|
50871
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_3, [
|
|
50872
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", {
|
|
50873
|
+
class: "thumbnail-item",
|
|
50874
|
+
onClick: addImage
|
|
50875
|
+
}, [
|
|
50876
|
+
_cache[6] || (_cache[6] = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", { class: "add-image" }, [
|
|
50877
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", { class: "add-icon" }, "+")
|
|
50878
|
+
], -1 /* CACHED */)),
|
|
50879
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_4, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(locale).webgl.newMaterial), 1 /* TEXT */)
|
|
50880
|
+
]),
|
|
50881
|
+
((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)(materialImages), (image, index) => {
|
|
50882
|
+
return ((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.openBlock)(), (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementBlock)("div", {
|
|
50883
|
+
class: "thumbnail-item",
|
|
50884
|
+
key: index
|
|
50885
|
+
}, [
|
|
50886
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("img", {
|
|
50887
|
+
src: image.url,
|
|
50888
|
+
alt: image.name,
|
|
50889
|
+
class: "thumbnail-img"
|
|
50890
|
+
}, null, 8 /* PROPS */, _hoisted_5),
|
|
50891
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createElementVNode)("div", _hoisted_6, (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.toDisplayString)(image.name), 1 /* TEXT */)
|
|
50892
|
+
]))
|
|
50893
|
+
}), 128 /* KEYED_FRAGMENT */))
|
|
50894
|
+
])
|
|
50895
|
+
])
|
|
50896
|
+
]),
|
|
50897
|
+
_: 1 /* STABLE */
|
|
50898
|
+
}),
|
|
50899
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, { style: {"margin-bootom":"0px"} }, {
|
|
50900
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50901
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_form_item, {
|
|
50902
|
+
label: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(locale).webgl.materialType
|
|
50903
|
+
}, {
|
|
50904
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50905
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_row, { style: {"display":"flex"} }, {
|
|
50906
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50907
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_group, {
|
|
50908
|
+
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).materialType,
|
|
50909
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (((0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.unref)(formItem).materialType) = $event)),
|
|
50910
|
+
onChange: _cache[5] || (_cache[5] = $event => (paramsChanged('materialType')))
|
|
50911
|
+
}, {
|
|
50912
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50913
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_button, { label: 1 }, {
|
|
50914
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50915
|
+
(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)(t)('webgl.commonMaterial')), 1 /* TEXT */)
|
|
50916
|
+
]),
|
|
50917
|
+
_: 1 /* STABLE */
|
|
50918
|
+
}),
|
|
50919
|
+
(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.createVNode)(_component_kq_radio_button, { label: 2 }, {
|
|
50920
|
+
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.withCtx)(() => [
|
|
50921
|
+
(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)(t)('webgl.pbrMaterial')), 1 /* TEXT */)
|
|
50922
|
+
]),
|
|
50923
|
+
_: 1 /* STABLE */
|
|
50924
|
+
})
|
|
50925
|
+
]),
|
|
50926
|
+
_: 1 /* STABLE */
|
|
50927
|
+
}, 8 /* PROPS */, ["modelValue"])
|
|
50928
|
+
]),
|
|
50929
|
+
_: 1 /* STABLE */
|
|
50930
|
+
})
|
|
50931
|
+
]),
|
|
50932
|
+
_: 1 /* STABLE */
|
|
50933
|
+
}, 8 /* PROPS */, ["label"])
|
|
50934
|
+
]),
|
|
50935
|
+
_: 1 /* STABLE */
|
|
50936
|
+
})
|
|
50937
|
+
]),
|
|
50938
|
+
_: 1 /* STABLE */
|
|
50939
|
+
}, 8 /* PROPS */, ["label-width"])
|
|
50940
|
+
])
|
|
50941
|
+
], 2 /* CLASS */))
|
|
50942
|
+
}
|
|
50943
|
+
}
|
|
50944
|
+
|
|
50945
|
+
}));
|
|
50946
|
+
;// ./src/webgl/modelmaterialedit/ModelMaterialEdit.vue?vue&type=script&setup=true&lang=js
|
|
50947
|
+
|
|
50948
|
+
;// ./src/webgl/modelmaterialedit/ModelMaterialEdit.vue
|
|
50949
|
+
|
|
50950
|
+
|
|
50951
|
+
|
|
50952
|
+
const __exports__ = ModelMaterialEditvue_type_script_setup_true_lang_js;
|
|
50953
|
+
|
|
50954
|
+
/* harmony default export */ var ModelMaterialEdit = (__exports__);
|
|
50955
|
+
// EXTERNAL MODULE: external "@kq_npm/client_common_vue/init.js"
|
|
50956
|
+
var init_js_ = __webpack_require__(455);
|
|
50957
|
+
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
50958
|
+
;// ./src/webgl/modelmaterialedit/index.js
|
|
50959
|
+
/*
|
|
50960
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
50961
|
+
* All rights reserved.
|
|
50962
|
+
*/
|
|
50963
|
+
|
|
50964
|
+
|
|
50965
|
+
|
|
50966
|
+
|
|
50967
|
+
ModelMaterialEdit.install = (Vue, opts) => {
|
|
50968
|
+
init_js_default()(Vue, opts);
|
|
50969
|
+
Vue.component(ModelMaterialEdit.name, ModelMaterialEdit);
|
|
50970
|
+
};
|
|
50971
|
+
|
|
50972
|
+
|
|
50973
|
+
|
|
50499
50974
|
|
|
50500
50975
|
/***/ }),
|
|
50501
50976
|
|
|
@@ -58043,10 +58518,10 @@ const __exports__ = AddDatavue_type_script_setup_true_lang_js;
|
|
|
58043
58518
|
var init_js_ = __webpack_require__(455);
|
|
58044
58519
|
var init_js_default = /*#__PURE__*/__webpack_require__.n(init_js_);
|
|
58045
58520
|
;// ./src/webgl/adddata/index.js
|
|
58046
|
-
/*
|
|
58047
|
-
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
58048
|
-
* All rights reserved.
|
|
58049
|
-
*/
|
|
58521
|
+
/*
|
|
58522
|
+
* Copyright (C) 2019 KQ GEO Technologies Co., Ltd.
|
|
58523
|
+
* All rights reserved.
|
|
58524
|
+
*/
|
|
58050
58525
|
|
|
58051
58526
|
|
|
58052
58527
|
|
|
@@ -58057,7 +58532,8 @@ AddData.install = (Vue, opts) => {
|
|
|
58057
58532
|
};
|
|
58058
58533
|
|
|
58059
58534
|
|
|
58060
|
-
|
|
58535
|
+
|
|
58536
|
+
kq_npm_client3d_webgl_vue.Kq3dAddData = AddData;
|
|
58061
58537
|
|
|
58062
58538
|
/***/ }),
|
|
58063
58539
|
|