egovamap 0.35.32 → 0.35.34

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.
@@ -611,7 +611,7 @@ var EGovaGISMap = function (
611
611
  that.zoomToExtent = function (minX, minY, maxX, maxY) {
612
612
  if (scene == null) return;
613
613
  that.callMap(
614
- "zoomToExtent",
614
+ "setMapExtent",
615
615
  Number(minX),
616
616
  Number(minY),
617
617
  Number(maxX),
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.32",
3
+ "version": "0.35.34",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {