@kq_npm/client3d_webgl_vue 2.2.7-beta → 2.2.9-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/gpuspatialquery/index.js +56 -24
- package/index.js +238 -94
- package/package.json +1 -1
- package/profileanalysis/index.js +56 -24
- package/shadowanalysis/index.js +84 -30
- package/viewshedanalysis/index.js +42 -16
package/gpuspatialquery/index.js
CHANGED
|
@@ -405,6 +405,38 @@ const __default__ = {
|
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
},
|
|
408
|
+
minScale: {
|
|
409
|
+
type: Number,
|
|
410
|
+
default: 0.1
|
|
411
|
+
},
|
|
412
|
+
maxScale: {
|
|
413
|
+
type: Number,
|
|
414
|
+
default: 10
|
|
415
|
+
},
|
|
416
|
+
minXRotate: {
|
|
417
|
+
type: Number,
|
|
418
|
+
default: 0
|
|
419
|
+
},
|
|
420
|
+
maxXRotate: {
|
|
421
|
+
type: Number,
|
|
422
|
+
default: 120
|
|
423
|
+
},
|
|
424
|
+
minYRotate: {
|
|
425
|
+
type: Number,
|
|
426
|
+
default: 0
|
|
427
|
+
},
|
|
428
|
+
maxYRotate: {
|
|
429
|
+
type: Number,
|
|
430
|
+
default: 90
|
|
431
|
+
},
|
|
432
|
+
minZRotate: {
|
|
433
|
+
type: Number,
|
|
434
|
+
default: 0
|
|
435
|
+
},
|
|
436
|
+
maxZRotate: {
|
|
437
|
+
type: Number,
|
|
438
|
+
default: 90
|
|
439
|
+
},
|
|
408
440
|
// 设置参数
|
|
409
441
|
settingParams: {
|
|
410
442
|
type: Object
|
|
@@ -650,12 +682,12 @@ const __default__ = {
|
|
|
650
682
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale,
|
|
651
683
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale = $event),
|
|
652
684
|
step: 0.1,
|
|
653
|
-
min:
|
|
654
|
-
max:
|
|
685
|
+
min: __props.minScale,
|
|
686
|
+
max: __props.maxScale,
|
|
655
687
|
onInput: _cache[5] || (_cache[5] = $event => paramsChanged('scale'))
|
|
656
688
|
}, null, 8
|
|
657
689
|
/* PROPS */
|
|
658
|
-
, ["modelValue", "step", "min"])]),
|
|
690
|
+
, ["modelValue", "step", "min", "max"])]),
|
|
659
691
|
_: 1
|
|
660
692
|
/* STABLE */
|
|
661
693
|
|
|
@@ -665,14 +697,14 @@ const __default__ = {
|
|
|
665
697
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
666
698
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale,
|
|
667
699
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).scale = $event),
|
|
668
|
-
min:
|
|
669
|
-
max:
|
|
700
|
+
min: __props.minScale,
|
|
701
|
+
max: __props.maxScale,
|
|
670
702
|
step: 0.1,
|
|
671
703
|
"controls-position": "right",
|
|
672
704
|
onInput: _cache[7] || (_cache[7] = $event => paramsChanged('scale'))
|
|
673
705
|
}, null, 8
|
|
674
706
|
/* PROPS */
|
|
675
|
-
, ["modelValue", "min", "step"])]),
|
|
707
|
+
, ["modelValue", "min", "max", "step"])]),
|
|
676
708
|
_: 1
|
|
677
709
|
/* STABLE */
|
|
678
710
|
|
|
@@ -706,12 +738,12 @@ const __default__ = {
|
|
|
706
738
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate,
|
|
707
739
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate = $event),
|
|
708
740
|
step: 1,
|
|
709
|
-
min:
|
|
710
|
-
max:
|
|
741
|
+
min: __props.minXRotate,
|
|
742
|
+
max: __props.maxXRotate,
|
|
711
743
|
onInput: _cache[9] || (_cache[9] = $event => paramsChanged('xRotate'))
|
|
712
744
|
}, null, 8
|
|
713
745
|
/* PROPS */
|
|
714
|
-
, ["modelValue"])]),
|
|
746
|
+
, ["modelValue", "min", "max"])]),
|
|
715
747
|
_: 1
|
|
716
748
|
/* STABLE */
|
|
717
749
|
|
|
@@ -721,14 +753,14 @@ const __default__ = {
|
|
|
721
753
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
722
754
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate,
|
|
723
755
|
"onUpdate:modelValue": _cache[10] || (_cache[10] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).xRotate = $event),
|
|
724
|
-
min:
|
|
725
|
-
max:
|
|
756
|
+
min: __props.minXRotate,
|
|
757
|
+
max: __props.maxXRotate,
|
|
726
758
|
step: 1,
|
|
727
759
|
"controls-position": "right",
|
|
728
760
|
onInput: _cache[11] || (_cache[11] = $event => paramsChanged('xRotate'))
|
|
729
761
|
}, null, 8
|
|
730
762
|
/* PROPS */
|
|
731
|
-
, ["modelValue"])]),
|
|
763
|
+
, ["modelValue", "min", "max"])]),
|
|
732
764
|
_: 1
|
|
733
765
|
/* STABLE */
|
|
734
766
|
|
|
@@ -762,12 +794,12 @@ const __default__ = {
|
|
|
762
794
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate,
|
|
763
795
|
"onUpdate:modelValue": _cache[12] || (_cache[12] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate = $event),
|
|
764
796
|
step: 1,
|
|
765
|
-
min:
|
|
766
|
-
max:
|
|
797
|
+
min: __props.minXRotate,
|
|
798
|
+
max: __props.maxXRotate,
|
|
767
799
|
onInput: _cache[13] || (_cache[13] = $event => paramsChanged('yRotate'))
|
|
768
800
|
}, null, 8
|
|
769
801
|
/* PROPS */
|
|
770
|
-
, ["modelValue"])]),
|
|
802
|
+
, ["modelValue", "min", "max"])]),
|
|
771
803
|
_: 1
|
|
772
804
|
/* STABLE */
|
|
773
805
|
|
|
@@ -777,14 +809,14 @@ const __default__ = {
|
|
|
777
809
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
778
810
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate,
|
|
779
811
|
"onUpdate:modelValue": _cache[14] || (_cache[14] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).yRotate = $event),
|
|
780
|
-
min:
|
|
781
|
-
max:
|
|
812
|
+
min: __props.minXRotate,
|
|
813
|
+
max: __props.maxXRotate,
|
|
782
814
|
step: 1,
|
|
783
815
|
"controls-position": "right",
|
|
784
816
|
onInput: _cache[15] || (_cache[15] = $event => paramsChanged('yRotate'))
|
|
785
817
|
}, null, 8
|
|
786
818
|
/* PROPS */
|
|
787
|
-
, ["modelValue"])]),
|
|
819
|
+
, ["modelValue", "min", "max"])]),
|
|
788
820
|
_: 1
|
|
789
821
|
/* STABLE */
|
|
790
822
|
|
|
@@ -818,12 +850,12 @@ const __default__ = {
|
|
|
818
850
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate,
|
|
819
851
|
"onUpdate:modelValue": _cache[16] || (_cache[16] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate = $event),
|
|
820
852
|
step: 1,
|
|
821
|
-
min:
|
|
822
|
-
max:
|
|
853
|
+
min: __props.minZRotate,
|
|
854
|
+
max: __props.maxZRotate,
|
|
823
855
|
onInput: _cache[17] || (_cache[17] = $event => paramsChanged('zRotate'))
|
|
824
856
|
}, null, 8
|
|
825
857
|
/* PROPS */
|
|
826
|
-
, ["modelValue"])]),
|
|
858
|
+
, ["modelValue", "min", "max"])]),
|
|
827
859
|
_: 1
|
|
828
860
|
/* STABLE */
|
|
829
861
|
|
|
@@ -833,14 +865,14 @@ const __default__ = {
|
|
|
833
865
|
default: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.withCtx)(() => [(0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.createVNode)(_component_kq_input_number, {
|
|
834
866
|
modelValue: (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate,
|
|
835
867
|
"onUpdate:modelValue": _cache[18] || (_cache[18] = $event => (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_namespaceObject.unref)(formItem).zRotate = $event),
|
|
836
|
-
min:
|
|
837
|
-
max:
|
|
868
|
+
min: __props.minZRotate,
|
|
869
|
+
max: __props.maxZRotate,
|
|
838
870
|
step: 1,
|
|
839
871
|
"controls-position": "right",
|
|
840
872
|
onInput: _cache[19] || (_cache[19] = $event => paramsChanged('zRotate'))
|
|
841
873
|
}, null, 8
|
|
842
874
|
/* PROPS */
|
|
843
|
-
, ["modelValue"])]),
|
|
875
|
+
, ["modelValue", "min", "max"])]),
|
|
844
876
|
_: 1
|
|
845
877
|
/* STABLE */
|
|
846
878
|
|