Replies: 2 comments 1 reply
-
I would argue this is the expected behavior but happy to be proven otherwise |
Beta Was this translation helpful? Give feedback.
0 replies
-
If you click on markers on a normal google map (maps.google.com), the InfoWindow closes when you click an other marker. Or when in the example in the documentation (https://vue3-google-map.netlify.app/components/info-window.html#use-with-marker) if you zoom in and click the red marker and then a blue one or so from google, the InfoWindow closes. This behaviour is different if you add more markers. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I noticed that InfoWindows aren't closed when you open an other InfoWindow if more than one Marker with a nested InfoWindow is used.

Code Snippet:
<MarkerCluster :options="clusterOptions"> <Marker v-for="(item, index) in markers" :key="index" > <InfoWindow> Dummy Content passed through slot </InfoWindow> </Marker> </MarkerCluster>
Beta Was this translation helpful? Give feedback.
All reactions