egovamap 0.35.31 → 0.35.32
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 +3 -7
- package/egovamap/egovamap.js +4 -12
- package/package.json +1 -1
package/egovamap/egovaglobe.js
CHANGED
|
@@ -3790,7 +3790,7 @@ var EGovaGlobeMap = function (
|
|
|
3790
3790
|
false
|
|
3791
3791
|
);
|
|
3792
3792
|
};
|
|
3793
|
-
that.
|
|
3793
|
+
that.crossSectionalAnalysis = function (
|
|
3794
3794
|
layerName,
|
|
3795
3795
|
cutline,
|
|
3796
3796
|
csPipePoints,
|
|
@@ -3798,17 +3798,13 @@ var EGovaGlobeMap = function (
|
|
|
3798
3798
|
) {
|
|
3799
3799
|
if (scene == null) return;
|
|
3800
3800
|
scene.fire(
|
|
3801
|
-
msgPrefix + ':
|
|
3801
|
+
msgPrefix + ':crossSectionalAnalysis',
|
|
3802
3802
|
{ args: [layerName, cutline, csPipePoints, options] },
|
|
3803
3803
|
parentScene,
|
|
3804
3804
|
false
|
|
3805
3805
|
);
|
|
3806
3806
|
};
|
|
3807
|
-
that.longitudinalSectionalAnalysis = function(
|
|
3808
|
-
layerName,
|
|
3809
|
-
data,
|
|
3810
|
-
options
|
|
3811
|
-
){
|
|
3807
|
+
that.longitudinalSectionalAnalysis = function (layerName, data, options) {
|
|
3812
3808
|
if (scene == null) return;
|
|
3813
3809
|
scene.fire(
|
|
3814
3810
|
msgPrefix + ':longitudinalSectionalAnalysis',
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5641,7 +5641,7 @@ var EGovaMap = function (
|
|
|
5641
5641
|
/**
|
|
5642
5642
|
* 立体横断面分析接口
|
|
5643
5643
|
*/
|
|
5644
|
-
that.
|
|
5644
|
+
that.crossSectionalAnalysis = function (
|
|
5645
5645
|
layerName,
|
|
5646
5646
|
cutline,
|
|
5647
5647
|
csPipePoints,
|
|
@@ -5649,7 +5649,7 @@ var EGovaMap = function (
|
|
|
5649
5649
|
) {
|
|
5650
5650
|
if (scene == null) return;
|
|
5651
5651
|
if (globeMap != null) {
|
|
5652
|
-
globeMap.
|
|
5652
|
+
globeMap.crossSectionalAnalysis(
|
|
5653
5653
|
layerName,
|
|
5654
5654
|
cutline,
|
|
5655
5655
|
csPipePoints,
|
|
@@ -5660,18 +5660,10 @@ var EGovaMap = function (
|
|
|
5660
5660
|
/**
|
|
5661
5661
|
* 立体纵断面分析接口
|
|
5662
5662
|
*/
|
|
5663
|
-
that.longitudinalSectionalAnalysis = function (
|
|
5664
|
-
layerName,
|
|
5665
|
-
data,
|
|
5666
|
-
options
|
|
5667
|
-
) {
|
|
5663
|
+
that.longitudinalSectionalAnalysis = function (layerName, data, options) {
|
|
5668
5664
|
if (scene == null) return;
|
|
5669
5665
|
if (globeMap != null) {
|
|
5670
|
-
globeMap.longitudinalSectionalAnalysis(
|
|
5671
|
-
layerName,
|
|
5672
|
-
data,
|
|
5673
|
-
options
|
|
5674
|
-
);
|
|
5666
|
+
globeMap.longitudinalSectionalAnalysis(layerName, data, options);
|
|
5675
5667
|
}
|
|
5676
5668
|
};
|
|
5677
5669
|
|