Javascript Google Maps API & non-passive event handlers
this works for me. Got here https://stackoverflow.com/a/55388961/2233069 (function () { if (typeof EventTarget !== “undefined”) { let func = EventTarget.prototype.addEventListener; EventTarget.prototype.addEventListener = function (type, fn, capture) { this.func = func; if(typeof capture !== “boolean”){ capture = capture || {}; capture.passive = false; } this.func(type, fn, capture); }; }; }());