egovamap 0.35.61 → 0.35.62
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 +29 -0
- package/package.json +1 -1
|
@@ -2919,6 +2919,35 @@ var EGovaGISMap = function (
|
|
|
2919
2919
|
return that.callMap("addOverviewMapV22", options);
|
|
2920
2920
|
}
|
|
2921
2921
|
|
|
2922
|
+
that.isobands = function (
|
|
2923
|
+
attrarry,
|
|
2924
|
+
xarry,
|
|
2925
|
+
yarry,
|
|
2926
|
+
breaks,
|
|
2927
|
+
breakcolors,
|
|
2928
|
+
cellwidth,
|
|
2929
|
+
boundary,
|
|
2930
|
+
hascelllabel,
|
|
2931
|
+
labelcolor,
|
|
2932
|
+
callback,
|
|
2933
|
+
options
|
|
2934
|
+
) {
|
|
2935
|
+
that.callMap(
|
|
2936
|
+
"isobands",
|
|
2937
|
+
attrarry,
|
|
2938
|
+
xarry,
|
|
2939
|
+
yarry,
|
|
2940
|
+
breaks,
|
|
2941
|
+
breakcolors,
|
|
2942
|
+
cellwidth,
|
|
2943
|
+
boundary,
|
|
2944
|
+
hascelllabel,
|
|
2945
|
+
labelcolor,
|
|
2946
|
+
callback,
|
|
2947
|
+
options
|
|
2948
|
+
);
|
|
2949
|
+
};
|
|
2950
|
+
|
|
2922
2951
|
that.init();
|
|
2923
2952
|
};
|
|
2924
2953
|
|