egovamap 0.35.69 → 0.35.70
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.
- package/egovamap/egovagisviewer.js +8 -0
- package/egovamap/egovamap.js +14 -0
- package/package.json +1 -1
|
@@ -2900,6 +2900,14 @@ var EGovaGISMap = function (
|
|
|
2900
2900
|
that.addMaskLayerV22 = function (params) {
|
|
2901
2901
|
that.callMap("addMaskLayerV22",params);
|
|
2902
2902
|
}
|
|
2903
|
+
|
|
2904
|
+
that.playRouteIcon = function (params) {
|
|
2905
|
+
that.callMap("playRouteIcon", params);
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
that.addDiffusionPoint = function (params) {
|
|
2909
|
+
that.callMap("addDiffusionPoint", params);
|
|
2910
|
+
}
|
|
2903
2911
|
|
|
2904
2912
|
that.destroyMap = function () {
|
|
2905
2913
|
var currentMap = window.eMapList && window.eMapList[that.id];
|
package/egovamap/egovamap.js
CHANGED
|
@@ -5763,6 +5763,20 @@ var EGovaMap = function (
|
|
|
5763
5763
|
}
|
|
5764
5764
|
};
|
|
5765
5765
|
|
|
5766
|
+
that.playRouteIcon = function (options) {
|
|
5767
|
+
if (scene == null) return;
|
|
5768
|
+
if (gisMap != null) {
|
|
5769
|
+
gisMap.playRouteIcon.apply(this, arguments);
|
|
5770
|
+
}
|
|
5771
|
+
};
|
|
5772
|
+
|
|
5773
|
+
that.addDiffusionPoint = function (options) {
|
|
5774
|
+
if (scene == null) return;
|
|
5775
|
+
if (gisMap != null) {
|
|
5776
|
+
gisMap.addDiffusionPoint.apply(this, arguments);
|
|
5777
|
+
}
|
|
5778
|
+
};
|
|
5779
|
+
|
|
5766
5780
|
that.initMap(containerID, callback, mapType, mapConfig, mapParam);
|
|
5767
5781
|
|
|
5768
5782
|
// EGovaBI(globeMap).bind(this)();
|