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 looks like the underlying Overlay object (access through the ref of ol-overlay component) does not have correct default properties such as stopEvent or insertFirst (should be true instead of false by default).
Describe the bug
Hi,
It looks like the underlying Overlay object (access through the ref of ol-overlay component) does not have correct default properties such as
stopEvent
orinsertFirst
(should betrue
instead offalse
by default).Please take a look at this demo here. I can pan the map even when the cursor is on top of the overlay. This is because,
stopEvent
is set tofalse
when it's supposed to betrue
by default, according to Openlayer API (https://openlayers.org/en/latest/apidoc/module-ol_Overlay-Overlay.html)Affected version(s)
Please run
npm list --depth=0 vue vue3-openlayers ol ol-ext ol-contextmenu
and paste the output below:To Reproduce
Steps to reproduce the behavior:
overlayRef.value.overlay.getOptions()
Expected behavior
stopEvent
orinsertFirst
should betrue
Actual behavior
stopEvent
andinsertFirst
arefalse
Thanks!
The text was updated successfully, but these errors were encountered: