egovamap 0.32.5 → 0.32.6
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.
|
@@ -2760,6 +2760,10 @@ var EGovaGISMap = function (
|
|
|
2760
2760
|
that.getPartCount = function (params, callback) {
|
|
2761
2761
|
that.callMap("getPartCount", params, callback);
|
|
2762
2762
|
};
|
|
2763
|
+
|
|
2764
|
+
that.getQueryPartByTree = function (options, callback) {
|
|
2765
|
+
that.callMap("getQueryPartByTree", options, callback);
|
|
2766
|
+
}
|
|
2763
2767
|
that.init();
|
|
2764
2768
|
};
|
|
2765
2769
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5266,6 +5266,14 @@ var EGovaMap = function (
|
|
|
5266
5266
|
gisMap.switchGisMapType(type, callback);
|
|
5267
5267
|
}
|
|
5268
5268
|
};
|
|
5269
|
+
|
|
5270
|
+
that.getQueryPartByTree = function (options, callback) {
|
|
5271
|
+
if (scene == null) return;
|
|
5272
|
+
if (gisMap != null) {
|
|
5273
|
+
gisMap.getQueryPartByTree(options, callback);
|
|
5274
|
+
}
|
|
5275
|
+
}
|
|
5276
|
+
|
|
5269
5277
|
that.initMap(containerID, callback, mapType, mapConfig);
|
|
5270
5278
|
|
|
5271
5279
|
// EGovaBI(globeMap).bind(this)();
|