egovamap 0.35.19 → 0.35.21

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.
@@ -1991,7 +1991,7 @@ var EGovaGISMap = function (
1991
1991
  rangeRadius: 20,
1992
1992
  };
1993
1993
  var callback = function (type, info) {
1994
- if (type === "clickCallback" && clickCallback) clickCallback(info);
1994
+ if (type === "chartsLayerClickCallback" && clickCallback) clickCallback(info);
1995
1995
  };
1996
1996
  that.callMap(
1997
1997
  "addCircleChart",
@@ -2862,6 +2862,14 @@ var EGovaGISMap = function (
2862
2862
  return that.callMap("removeOverlayImageLayer", id);
2863
2863
  }
2864
2864
 
2865
+ that.addAnimatedLines = function(data, options) {
2866
+ return that.callMap("addAnimatedLines", data, options);
2867
+ }
2868
+
2869
+ that.addBackgroundCircle = function(data, options) {
2870
+ return that.callMap("addBackgroundCircle", data, options);
2871
+ }
2872
+
2865
2873
  that.init();
2866
2874
  };
2867
2875