egovamap 0.35.29 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.29",
3
+ "version": "0.35.30",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {