@kq_npm/client3d_webgl_vue 4.5.25-beta → 4.5.26

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.
Files changed (47) hide show
  1. package/adddata/index.js +20 -10
  2. package/aspectanalysis/index.js +1 -0
  3. package/baseterraingallery/index.js +1 -0
  4. package/boxclip/index.js +1 -0
  5. package/clientPrint/index.js +507 -241
  6. package/excavatefillanalysis/index.js +1 -0
  7. package/flight/index.js +1 -0
  8. package/floodanalysis/index.js +1 -0
  9. package/geologicalbodyanalysis/index.js +1 -0
  10. package/gpuspatialquery/index.js +1 -0
  11. package/heatmap3d/index.js +1 -0
  12. package/index.js +392 -163
  13. package/isolineanalysis/index.js +1 -0
  14. package/light/index.js +1 -0
  15. package/limitheightanalysis/index.js +1 -0
  16. package/modelFlat/index.js +1 -0
  17. package/modelexcavate/index.js +1 -0
  18. package/modelfilter/index.js +1 -0
  19. package/modelprofileanalysis/index.js +1 -0
  20. package/modelselect/index.js +1 -0
  21. package/package.json +1 -1
  22. package/particleeffect/index.js +1 -0
  23. package/planeclip/index.js +1 -0
  24. package/roller/index.js +1 -0
  25. package/scaneffect/index.js +1 -0
  26. package/sceneadvancedtoimage/index.js +1 -0
  27. package/sceneapp/index.js +507 -241
  28. package/sceneset/index.js +8 -7
  29. package/scenetohdimage/index.js +1 -0
  30. package/sceneview/index.js +507 -241
  31. package/screenshot/index.js +1 -0
  32. package/shadowanalysis/index.js +1 -0
  33. package/sightlineanalysis/index.js +1 -0
  34. package/skylineanalysis/index.js +1 -0
  35. package/slopeanalysis/index.js +1 -0
  36. package/slopeaspectanalysis/index.js +1 -0
  37. package/style.css +1 -1
  38. package/terrainoperation/index.js +1 -0
  39. package/terrainprofileanalysis/index.js +1 -0
  40. package/typhoontrac/index.js +534 -0
  41. package/typhoontrac/style/index.js +3 -0
  42. package/typhoontrac/style/typhoontrac.css +1 -0
  43. package/videofusion/index.js +1 -0
  44. package/videoproject/index.js +1 -0
  45. package/viewshedanalysis/index.js +1 -0
  46. package/weathereffect/index.js +1 -0
  47. package/wireframesketch/index.js +1 -0
package/adddata/index.js CHANGED
@@ -408,7 +408,8 @@ class AddDataViewModel {
408
408
  entity.polyline = {
409
409
  positions: entity.polygon.hierarchy._value.positions,
410
410
  width: that._geojsonStyle.polygon.outlineWidth,
411
- material: that._geojsonStyle.polygon.outlineColor
411
+ material: that._geojsonStyle.polygon.outlineColor,
412
+ clampToGround: !that._geojsonStyle.polygon.perPositionHeight
412
413
  };
413
414
  }
414
415
  });
@@ -445,7 +446,8 @@ class AddDataViewModel {
445
446
  entity.polyline = {
446
447
  positions: entity.polygon.hierarchy._value.positions,
447
448
  width: that._geojsonStyle.polygon.outlineWidth,
448
- material: that._geojsonStyle.polygon.outlineColor
449
+ material: that._geojsonStyle.polygon.outlineColor,
450
+ clampToGround: !that._geojsonStyle.polygon.perPositionHeight
449
451
  };
450
452
  }
451
453
  });
@@ -520,7 +522,8 @@ class AddDataViewModel {
520
522
  entity.polyline = {
521
523
  positions: entity.polygon.hierarchy._value.positions,
522
524
  width: that._geojsonStyle.polygon.outlineWidth,
523
- material: that._geojsonStyle.polygon.outlineColor
525
+ material: that._geojsonStyle.polygon.outlineColor,
526
+ clampToGround: !that._geojsonStyle.polygon.perPositionHeight
524
527
  };
525
528
  }
526
529
  });
@@ -555,7 +558,8 @@ class AddDataViewModel {
555
558
  entity.polyline = {
556
559
  positions: entity.polygon.hierarchy._value.positions,
557
560
  width: that._geojsonStyle.polygon.outlineWidth,
558
- material: that._geojsonStyle.polygon.outlineColor
561
+ material: that._geojsonStyle.polygon.outlineColor,
562
+ clampToGround: !that._geojsonStyle.polygon.perPositionHeight
559
563
  };
560
564
  }
561
565
  });
@@ -597,7 +601,8 @@ class AddDataViewModel {
597
601
  entity.polyline = {
598
602
  positions: entity.polygon.hierarchy._value.positions,
599
603
  width: that._geojsonStyle.polygon.outlineWidth,
600
- material: that._geojsonStyle.polygon.outlineColor
604
+ material: that._geojsonStyle.polygon.outlineColor,
605
+ clampToGround: !that._geojsonStyle.polygon.perPositionHeight
601
606
  };
602
607
  }
603
608
  });
@@ -659,7 +664,8 @@ class AddDataViewModel {
659
664
  entity.polyline = {
660
665
  positions: entity.polygon.hierarchy._value.positions,
661
666
  width: style.polygon.outlineWidth,
662
- material: style.polygon.outlineColor
667
+ material: style.polygon.outlineColor,
668
+ clampToGround: !style.polygon.perPositionHeight
663
669
  };
664
670
  }
665
671
  });
@@ -1030,7 +1036,8 @@ class AddDataViewModel {
1030
1036
  entity.polyline = {
1031
1037
  positions: entity.polygon.hierarchy._value.positions,
1032
1038
  width: geojsonStyle0.polygon.outlineWidth,
1033
- material: geojsonStyle0.polygon.outlineColor
1039
+ material: geojsonStyle0.polygon.outlineColor,
1040
+ clampToGround: !geojsonStyle0.polygon.perPositionHeight
1034
1041
  };
1035
1042
  }
1036
1043
  });
@@ -1390,7 +1397,8 @@ class AddDataViewModel {
1390
1397
  entity.polyline = {
1391
1398
  positions: entity.polygon.hierarchy._value.positions,
1392
1399
  width: this._geojsonStyle.polygon.outlineWidth,
1393
- material: this._geojsonStyle.polygon.outlineColor
1400
+ material: this._geojsonStyle.polygon.outlineColor,
1401
+ clampToGround: !this._geojsonStyle.polygon.perPositionHeight
1394
1402
  };
1395
1403
  }
1396
1404
  }, this);
@@ -1423,7 +1431,8 @@ class AddDataViewModel {
1423
1431
  entity.polyline = {
1424
1432
  positions: entity.polygon.hierarchy._value.positions,
1425
1433
  width: geojsonStyle.polygon.outlineWidth,
1426
- material: geojsonStyle.polygon.outlineColor
1434
+ material: geojsonStyle.polygon.outlineColor,
1435
+ clampToGround: !geojsonStyle.polygon.perPositionHeight
1427
1436
  };
1428
1437
  }
1429
1438
  }, this);
@@ -1598,7 +1607,8 @@ class AddDataViewModel {
1598
1607
  entity.polyline = {
1599
1608
  positions: entity.polygon.hierarchy._value.positions,
1600
1609
  width: this._geojsonStyle.polygon.outlineWidth,
1601
- material: this._geojsonStyle.polygon.outlineColor
1610
+ material: this._geojsonStyle.polygon.outlineColor,
1611
+ clampToGround: !this._geojsonStyle.polygon.perPositionHeight
1602
1612
  };
1603
1613
  }
1604
1614
  }, this);
@@ -427,6 +427,7 @@ const __default__ = {
427
427
  messages
428
428
  } = (0,vue_i18n_cjs_js_.useI18n)();
429
429
  let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
430
+ headerTempTitle.value = language.value.aspectAnalysis;
430
431
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
431
432
  language.value = messages.value[newVal]["webgl"];
432
433
  headerTempTitle.value = language.value.aspectAnalysis;
@@ -388,6 +388,7 @@ const __default__ = {
388
388
  messages
389
389
  } = (0,vue_i18n_cjs_js_.useI18n)();
390
390
  let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
391
+ headerTempTitle.value = language.value.onlineTerrain;
391
392
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
392
393
  language.value = messages.value[newVal]["webgl"];
393
394
  headerTempTitle.value = language.value.onlineTerrain;
package/boxclip/index.js CHANGED
@@ -550,6 +550,7 @@ const __default__ = {
550
550
  messages
551
551
  } = (0,vue_i18n_cjs_js_.useI18n)();
552
552
  let headerTempTitle = (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.ref)(null);
553
+ headerTempTitle.value = language.value.boxClip;
553
554
  (0,external_root_Vue_commonjs_vue_commonjs2_vue_amd_vue_.watch)(() => locale.value, (newVal, oldVal) => {
554
555
  language.value = messages.value[newVal]["webgl"];
555
556
  headerTempTitle.value = language.value.boxClip;