egovamap 0.32.8 → 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.
|
@@ -422,6 +422,7 @@ var EGovaGISMap = function (
|
|
|
422
422
|
configName: gisConfig,
|
|
423
423
|
useMask: useMask,
|
|
424
424
|
humanID: humanID,
|
|
425
|
+
dragExtentLimit: context.dragExtentLimit,
|
|
425
426
|
style: "",
|
|
426
427
|
};
|
|
427
428
|
if (mapConfig && mapConfig.params) {
|
|
@@ -2764,6 +2765,10 @@ var EGovaGISMap = function (
|
|
|
2764
2765
|
that.getQueryPartByTree = function (options, callback) {
|
|
2765
2766
|
that.callMap("getQueryPartByTree", options, callback);
|
|
2766
2767
|
}
|
|
2768
|
+
|
|
2769
|
+
that.mouseMoveEvent = function (callback) {
|
|
2770
|
+
that.callMap("mouseMoveEvent",callback);
|
|
2771
|
+
}
|
|
2767
2772
|
that.init();
|
|
2768
2773
|
};
|
|
2769
2774
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -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)();
|