egovamap 0.35.33 → 0.35.35
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
CHANGED
|
@@ -3804,6 +3804,15 @@ var EGovaGlobeMap = function (
|
|
|
3804
3804
|
false
|
|
3805
3805
|
);
|
|
3806
3806
|
};
|
|
3807
|
+
that.collisionAnalysis = function (options) {
|
|
3808
|
+
if (scene == null) return;
|
|
3809
|
+
scene.fire(
|
|
3810
|
+
msgPrefix + ':collisionAnalysis',
|
|
3811
|
+
{ args: [options] },
|
|
3812
|
+
parentScene,
|
|
3813
|
+
false
|
|
3814
|
+
);
|
|
3815
|
+
};
|
|
3807
3816
|
that.longitudinalSectionalAnalysis = function (layerName, data, options) {
|
|
3808
3817
|
if (scene == null) return;
|
|
3809
3818
|
scene.fire(
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5657,6 +5657,12 @@ var EGovaMap = function (
|
|
|
5657
5657
|
);
|
|
5658
5658
|
}
|
|
5659
5659
|
};
|
|
5660
|
+
that.collisionAnalysis = function (options) {
|
|
5661
|
+
if (scene == null) return;
|
|
5662
|
+
if (globeMap != null) {
|
|
5663
|
+
globeMap.collisionAnalysis(options);
|
|
5664
|
+
}
|
|
5665
|
+
};
|
|
5660
5666
|
/**
|
|
5661
5667
|
* 立体纵断面分析接口
|
|
5662
5668
|
*/
|