egovamap 0.15.21 → 0.15.22
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/egovaBI.js +2 -1
- package/package.json +1 -1
package/egovamap/egovaBI.js
CHANGED
|
@@ -300,7 +300,7 @@ var egovaBI = function(globeMap, gisMap, mapType){
|
|
|
300
300
|
}
|
|
301
301
|
return label;
|
|
302
302
|
};
|
|
303
|
-
this.drawParts = function (options, data) {
|
|
303
|
+
this.drawParts = function (options, data, callback) {
|
|
304
304
|
var self = this;
|
|
305
305
|
function showParts(data) {
|
|
306
306
|
var drawParam = options.drawParam || {};
|
|
@@ -366,6 +366,7 @@ var egovaBI = function(globeMap, gisMap, mapType){
|
|
|
366
366
|
symbolUrl: symbolUrl,
|
|
367
367
|
});
|
|
368
368
|
}));
|
|
369
|
+
callback && callback(dataList);
|
|
369
370
|
showParts(dataList);
|
|
370
371
|
};
|
|
371
372
|
if (gisMap) {
|