egovamap 0.30.1 → 0.30.2
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 +3 -1
- package/package.json +1 -1
package/egovamap/egovaBI.js
CHANGED
|
@@ -432,7 +432,9 @@ var egovaBI = function (globeMap, gisMap, mapType) {
|
|
|
432
432
|
if (errorSize > 0) {
|
|
433
433
|
console.error(`${errorSize}个点格式错误,无法正常加载`);
|
|
434
434
|
}
|
|
435
|
-
|
|
435
|
+
if(options.callback){
|
|
436
|
+
options.callback(dataCache);
|
|
437
|
+
}
|
|
436
438
|
drawData(layerName, dataCache, options);
|
|
437
439
|
});
|
|
438
440
|
};
|