egovamap 0.29.1 → 0.29.2
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.
|
@@ -2733,6 +2733,11 @@ var EGovaGISMap = function (
|
|
|
2733
2733
|
that.callMap("identifyTreeLayer", options, callback)
|
|
2734
2734
|
}
|
|
2735
2735
|
|
|
2736
|
+
// 关闭点选拾取
|
|
2737
|
+
that.closePointSelect = function () {
|
|
2738
|
+
that.callMap("closePointSelect");
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2736
2741
|
that.init();
|
|
2737
2742
|
};
|
|
2738
2743
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5203,6 +5203,15 @@ var EGovaMap = function (
|
|
|
5203
5203
|
}
|
|
5204
5204
|
}
|
|
5205
5205
|
|
|
5206
|
+
that.closePointSelect = function () {
|
|
5207
|
+
if (scene == null) {
|
|
5208
|
+
return;
|
|
5209
|
+
}
|
|
5210
|
+
if (gisMap != null) {
|
|
5211
|
+
gisMap.closePointSelect();
|
|
5212
|
+
}
|
|
5213
|
+
}
|
|
5214
|
+
|
|
5206
5215
|
that.initMap(containerID, callback, mapType, mapConfig);
|
|
5207
5216
|
|
|
5208
5217
|
// EGovaBI(globeMap).bind(this)();
|