egovamap 0.15.24 → 0.15.25
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/egovaglobe.js +2 -2
- package/egovamap/egovamap.js +2 -2
- package/package.json +1 -1
package/egovamap/egovaglobe.js
CHANGED
|
@@ -1982,10 +1982,10 @@ var EGovaGlobeMap = function ($container, pScene, prefix, mapConfig, context, ca
|
|
|
1982
1982
|
return;
|
|
1983
1983
|
scene.fire((msgPrefix + ":setLineOptions"), { args: [options] }, parentScene, false);
|
|
1984
1984
|
};
|
|
1985
|
-
that.bufferAnalysis = function(options,clear,update) {
|
|
1985
|
+
that.bufferAnalysis = function(options,clear,update,callback) {
|
|
1986
1986
|
if (scene == null)
|
|
1987
1987
|
return;
|
|
1988
|
-
scene.fire((msgPrefix + ":bufferAnalysis"), { args: [options,clear,update] }, parentScene, false);
|
|
1988
|
+
scene.fire((msgPrefix + ":bufferAnalysis"), { args: [options,clear,update,callback] }, parentScene, false);
|
|
1989
1989
|
};
|
|
1990
1990
|
that.clearBufferAnalysis = function(options) {
|
|
1991
1991
|
if (scene == null)
|
package/egovamap/egovamap.js
CHANGED
|
@@ -3907,11 +3907,11 @@ var EGovaMap = function (containerID, callback, mapConfig, mapType, mapParam, co
|
|
|
3907
3907
|
globeMap.setLineOptions(options);
|
|
3908
3908
|
}
|
|
3909
3909
|
};
|
|
3910
|
-
that.bufferAnalysis = function(options,clear,update) {
|
|
3910
|
+
that.bufferAnalysis = function(options,clear,update,callback) {
|
|
3911
3911
|
if (scene == null)
|
|
3912
3912
|
return;
|
|
3913
3913
|
if (globeMap != null) {
|
|
3914
|
-
globeMap.bufferAnalysis(options,clear,update);
|
|
3914
|
+
globeMap.bufferAnalysis(options,clear,update,callback);
|
|
3915
3915
|
}
|
|
3916
3916
|
};
|
|
3917
3917
|
that.clearBufferAnalysis = function() {
|