egovamap 0.35.8 → 0.35.9
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.
|
@@ -2846,6 +2846,10 @@ var EGovaGISMap = function (
|
|
|
2846
2846
|
return that.callMap("editGeometry", layerid, IDs, keyField, style, clear, zoom, features, operable, callback, options);
|
|
2847
2847
|
}
|
|
2848
2848
|
|
|
2849
|
+
that.editAction = function (type, options) {
|
|
2850
|
+
return that.callMap("editAction", type, options);
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2849
2853
|
that.init();
|
|
2850
2854
|
};
|
|
2851
2855
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5574,6 +5574,13 @@ var EGovaMap = function (
|
|
|
5574
5574
|
}
|
|
5575
5575
|
}
|
|
5576
5576
|
|
|
5577
|
+
that.editAction = function () {
|
|
5578
|
+
if (scene == null) return;
|
|
5579
|
+
if (gisMap != null) {
|
|
5580
|
+
gisMap.editAction.apply(this, arguments);
|
|
5581
|
+
}
|
|
5582
|
+
}
|
|
5583
|
+
|
|
5577
5584
|
that.initMap(containerID, callback, mapType, mapConfig, mapParam);
|
|
5578
5585
|
|
|
5579
5586
|
// EGovaBI(globeMap).bind(this)();
|