You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the unblockEvents function, theres the statement: delete this._oldTargets. This does not have the desired effect, causing this._oldTargets to grow indefinitely.
This issue will lead to performance problems and eventually crashes (out of memory). It becomes a problem when working with tousands of layers.
this._oldTargets = {}; solves the problem.
The text was updated successfully, but these errors were encountered:
In the
unblockEvents
function, theres the statement:delete this._oldTargets
. This does not have the desired effect, causingthis._oldTargets
to grow indefinitely.This issue will lead to performance problems and eventually crashes (out of memory). It becomes a problem when working with tousands of layers.
this._oldTargets = {};
solves the problem.The text was updated successfully, but these errors were encountered: