egovamap 0.35.12 → 0.35.13

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.
@@ -2854,6 +2854,14 @@ var EGovaGISMap = function (
2854
2854
  return that.callMap("addLineArrow", id, option);
2855
2855
  }
2856
2856
 
2857
+ that.addOverlayImage = function(image, extent, width ,height, layerName) {
2858
+ return that.callMap("addOverlayImage", image, extent, width ,height, layerName);
2859
+ }
2860
+
2861
+ that.removeOverlayImageLayer = function(id) {
2862
+ return that.callMap("removeOverlayImageLayer", id);
2863
+ }
2864
+
2857
2865
  that.init();
2858
2866
  };
2859
2867