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
It throws a lot of TypeError: evt.toLowerCase is not a function. (In 'evt.toLowerCase()', 'evt.toLowerCase' is undefined)
I check the code, it seems in the recent change in the googlemap.ts, a lot of addEventListener functions were added. But instead of using this._objectInstance.addEventListener(event, observer.next.bind(observer));
, it should use this._objectInstance.addEventListener(eventName, observer.next.bind(observer));
The text was updated successfully, but these errors were encountered:
It throws a lot of TypeError: evt.toLowerCase is not a function. (In 'evt.toLowerCase()', 'evt.toLowerCase' is undefined)
I check the code, it seems in the recent change in the googlemap.ts, a lot of addEventListener functions were added. But instead of using
this._objectInstance.addEventListener(event, observer.next.bind(observer));
, it should use
this._objectInstance.addEventListener(eventName, observer.next.bind(observer));
The text was updated successfully, but these errors were encountered: