egovamap 0.11.3 → 0.11.4
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/egovagis.js +2 -2
- package/egovamap/egovamap.js +2 -2
- package/package.json +1 -1
package/egovamap/egovagis.js
CHANGED
|
@@ -699,8 +699,8 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
|
|
|
699
699
|
/**
|
|
700
700
|
*等值面生成
|
|
701
701
|
**/
|
|
702
|
-
that.isobands = function(attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor){
|
|
703
|
-
scene.fire(msgPrefix + ":isobands", { args: [attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor] },
|
|
702
|
+
that.isobands = function(attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor,callback){
|
|
703
|
+
scene.fire(msgPrefix + ":isobands", { args: [attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor,callback] },
|
|
704
704
|
parentScene);
|
|
705
705
|
}
|
|
706
706
|
|
package/egovamap/egovamap.js
CHANGED
|
@@ -3328,10 +3328,10 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
|
|
|
3328
3328
|
* @param {Number} hascelllabel 是否获取插值数值
|
|
3329
3329
|
* @param {Number} labelcolor 插值颜色
|
|
3330
3330
|
*/
|
|
3331
|
-
that.isobands = function(attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor){
|
|
3331
|
+
that.isobands = function(attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor,callback){
|
|
3332
3332
|
if (scene == null) { return; }
|
|
3333
3333
|
if (gisMap != null) {
|
|
3334
|
-
gisMap.isobands(attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor);
|
|
3334
|
+
gisMap.isobands(attrarry,xarry,yarry,breaks,breakcolors,cellwidth,boundary,hascelllabel,labelcolor,callback);
|
|
3335
3335
|
}
|
|
3336
3336
|
}
|
|
3337
3337
|
|