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
fusiontips.js:211 Uncaught TypeError: Cannot read property 'fromLatLngToDivPixel' of null
Because a tip often remains visible after mousing off of the map, I am calling disableMapTips() on mouseout to clear it and then calling enableMapTips(opts) on mouseover to set it back up.
All seems to be working well, except for this js error in the dev console.
Is there a better way to do what I need? I could not figure out how to dynamically change suppressMapTips.
The text was updated successfully, but these errors were encountered:
The error is because setTimeout is running queryFusion() even after disableMapTips is run. My local fix was to declare the delayTimeout var at the module level, then calling window.clearTimeout(delayTimeout); in disableMapTips()
fusiontips.js:211 Uncaught TypeError: Cannot read property 'fromLatLngToDivPixel' of null
Because a tip often remains visible after mousing off of the map, I am calling disableMapTips() on mouseout to clear it and then calling enableMapTips(opts) on mouseover to set it back up.
All seems to be working well, except for this js error in the dev console.
Is there a better way to do what I need? I could not figure out how to dynamically change suppressMapTips.
The text was updated successfully, but these errors were encountered: