egovamap 0.32.9 → 0.32.10

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.
@@ -2765,6 +2765,10 @@ var EGovaGISMap = function (
2765
2765
  that.getQueryPartByTree = function (options, callback) {
2766
2766
  that.callMap("getQueryPartByTree", options, callback);
2767
2767
  }
2768
+
2769
+ that.mouseMoveEvent = function (callback) {
2770
+ that.callMap("mouseMoveEvent",callback);
2771
+ }
2768
2772
  that.init();
2769
2773
  };
2770
2774
 
@@ -5274,6 +5274,13 @@ var EGovaMap = function (
5274
5274
  }
5275
5275
  }
5276
5276
 
5277
+ that.mouseMoveEvent = function (callback) {
5278
+ if (scene == null) return;
5279
+ if (gisMap != null) {
5280
+ gisMap.mouseMoveEvent(callback);
5281
+ }
5282
+ }
5283
+
5277
5284
  that.initMap(containerID, callback, mapType, mapConfig);
5278
5285
 
5279
5286
  // EGovaBI(globeMap).bind(this)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.32.9",
3
+ "version": "0.32.10",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {