egovamap 0.35.28 → 0.35.30

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.
@@ -3804,6 +3804,15 @@ var EGovaGlobeMap = function (
3804
3804
  false
3805
3805
  );
3806
3806
  };
3807
+ that.longitudinalSectionalAnalysis = function(){
3808
+ if (scene == null) return;
3809
+ scene.fire(
3810
+ msgPrefix + ':longitudinalSectionalAnalysis',
3811
+ { args: [layerName, data, options] },
3812
+ parentScene,
3813
+ false
3814
+ );
3815
+ };
3807
3816
  that.init();
3808
3817
  };
3809
3818
 
@@ -5657,6 +5657,23 @@ var EGovaMap = function (
5657
5657
  );
5658
5658
  }
5659
5659
  };
5660
+ /**
5661
+ * 立体纵断面分析接口
5662
+ */
5663
+ that.longitudinalSectionalAnalysis = function (
5664
+ layerName,
5665
+ data,
5666
+ options
5667
+ ) {
5668
+ if (scene == null) return;
5669
+ if (globeMap != null) {
5670
+ globeMap.longitudinalSectionalAnalysis(
5671
+ layerName,
5672
+ data,
5673
+ options
5674
+ );
5675
+ }
5676
+ };
5660
5677
 
5661
5678
  that.addAnimatedLines = function (data, options) {
5662
5679
  if (scene == null) return;
@@ -115,6 +115,8 @@ var egovamapMEx = function (gisMobileMap) {
115
115
  "xkMoveTraceByTime",
116
116
  "xkSetTraceStatus",
117
117
  "UpdateMapSize",
118
+ "setTraceHisGradientTotalTime",
119
+ "setTraceHisGradientRun"
118
120
  ];
119
121
  methodEx = methodEx.concat(methodBusEx);
120
122
  for (let index = 0; index < methodEx.length; index++) {
@@ -419,6 +419,8 @@ var EGovaMobileMap = function (
419
419
  "xkMoveTraceByTime",
420
420
  "xkSetTraceStatus",
421
421
  "UpdateMapSize",
422
+ "setTraceHisGradientTotalTime",
423
+ "setTraceHisGradientRun"
422
424
  ];
423
425
  methodEx = methodEx.concat(methodBusEx);
424
426
  for (let index = 0; index < methodEx.length; index++) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.28",
3
+ "version": "0.35.30",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {