egovamap 0.14.3 → 0.14.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/package.json +1 -1
package/egovamap/egovagis.js
CHANGED
|
@@ -928,7 +928,7 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
|
|
|
928
928
|
scene.fire(msgPrefix + ":addChart", {args: [option, zoom,id,minZoom,maxZoom]}, parentScene);
|
|
929
929
|
}
|
|
930
930
|
|
|
931
|
-
that.drawGeometry = function(type, style, clear, callback) {
|
|
931
|
+
that.drawGeometry = function(type, style, clear, callback, option) {
|
|
932
932
|
type = type || "point";
|
|
933
933
|
style = style || {"type":"esriSLS","style":"esriSLSSolid","color":[255,0,0,255],"width":2};
|
|
934
934
|
//移除监听
|
|
@@ -939,7 +939,7 @@ var EGovaGISMap = function ($container, pScene, prefix, gisParams, mapConfig,con
|
|
|
939
939
|
});
|
|
940
940
|
}
|
|
941
941
|
|
|
942
|
-
scene.fire(msgPrefix + ":drawGeometry", {args: [type, style, clear]}, parentScene);
|
|
942
|
+
scene.fire(msgPrefix + ":drawGeometry", {args: [type, style, clear, callback, option]}, parentScene);
|
|
943
943
|
}
|
|
944
944
|
|
|
945
945
|
/* 热力图*/
|