egovamap 0.35.11 → 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.
@@ -2850,6 +2850,18 @@ var EGovaGISMap = function (
2850
2850
  return that.callMap("editAction", type, options);
2851
2851
  }
2852
2852
 
2853
+ that.addLineArrow = function (id, option){
2854
+ return that.callMap("addLineArrow", id, option);
2855
+ }
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
+
2853
2865
  that.init();
2854
2866
  };
2855
2867
 
@@ -5581,6 +5581,33 @@ var EGovaMap = function (
5581
5581
  }
5582
5582
  }
5583
5583
 
5584
+ that.addLineArrow = function () {
5585
+ if (scene == null) return;
5586
+ if (gisMap != null) {
5587
+ gisMap.addLineArrow.apply(this, arguments);
5588
+ }
5589
+ }
5590
+
5591
+ /**
5592
+ * 地图叠加图片接口,可用于添加云图
5593
+ */
5594
+ that.addOverlayImage = function(image, extent, width ,height, layerName) {
5595
+ if (scene == null) return;
5596
+ if (gisMap != null) {
5597
+ gisMap.addOverlayImage.apply(this, arguments);
5598
+ }
5599
+ }
5600
+
5601
+ /**
5602
+ * 地图移除叠加图片接口
5603
+ */
5604
+ that.removeOverlayImageLayer = function(id) {
5605
+ if (scene == null) return;
5606
+ if (gisMap != null) {
5607
+ gisMap.removeOverlayImageLayer.apply(this, arguments);
5608
+ }
5609
+ }
5610
+
5584
5611
  that.initMap(containerID, callback, mapType, mapConfig, mapParam);
5585
5612
 
5586
5613
  // EGovaBI(globeMap).bind(this)();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "egovamap",
3
- "version": "0.35.11",
3
+ "version": "0.35.13",
4
4
  "description": "eUrbanGIS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {