egovamap 0.35.31 → 0.35.33

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.
@@ -1197,7 +1197,18 @@ var EGovaGISMap = function (
1197
1197
  );
1198
1198
  };
1199
1199
 
1200
- /* 高亮显示自定义图标 */
1200
+ /**
1201
+ * 新聚类传入数据的接口
1202
+ */
1203
+ that.showMultiObjectCurrentPositionWithData = function (jsonInfo) {
1204
+ if (scene == null) return;
1205
+ that.callMap(
1206
+ "showMultiObjectCurrentPositionWithData",
1207
+ jsonInfo
1208
+ );
1209
+ };
1210
+
1211
+ /* 高亮显示自定义图标 */
1201
1212
  that.highLightMultiObjectCurrentPosition = function (
1202
1213
  objectID,
1203
1214
  zoom,
@@ -3790,7 +3790,7 @@ var EGovaGlobeMap = function (
3790
3790
  false
3791
3791
  );
3792
3792
  };
3793
- that.crossSectionAnalysis = function (
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 + ':crossSectionAnalysis',
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',
@@ -5641,7 +5641,7 @@ var EGovaMap = function (
5641
5641
  /**
5642
5642
  * 立体横断面分析接口
5643
5643
  */
5644
- that.crossSectionAnalysis = function (
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.crossSectionAnalysis(
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.31",
3
+ "version": "0.35.33",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {