egovamap 0.35.29 → 0.35.31
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/egovamap/egovaglobe.js +13 -0
- package/egovamap/egovamap.js +17 -0
- package/package.json +1 -1
package/egovamap/egovaglobe.js
CHANGED
|
@@ -3804,6 +3804,19 @@ var EGovaGlobeMap = function (
|
|
|
3804
3804
|
false
|
|
3805
3805
|
);
|
|
3806
3806
|
};
|
|
3807
|
+
that.longitudinalSectionalAnalysis = function(
|
|
3808
|
+
layerName,
|
|
3809
|
+
data,
|
|
3810
|
+
options
|
|
3811
|
+
){
|
|
3812
|
+
if (scene == null) return;
|
|
3813
|
+
scene.fire(
|
|
3814
|
+
msgPrefix + ':longitudinalSectionalAnalysis',
|
|
3815
|
+
{ args: [layerName, data, options] },
|
|
3816
|
+
parentScene,
|
|
3817
|
+
false
|
|
3818
|
+
);
|
|
3819
|
+
};
|
|
3807
3820
|
that.init();
|
|
3808
3821
|
};
|
|
3809
3822
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -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;
|