Sometimes, the marker is not visible on hover, but it appears when I slightly zoom in or out or on camera-change. I have a marker as pin with a medium rank, and on hover, I’m adding a new marker at the same lat-long with an always-visible rank. How can I ensure the marker remains consistently visible during hover? I am expecting like below image.
Hi there!
medium
rank will display/hide the marker in certain situations.
If you’re looking to overlap the markers, you can assign always-visible
to both, or
If you wanted to keep the medium
rank you can:
- On hover, update the state to
always-visible
- Add new marker on top with
always-visible
- Off hover, reset rank back to
medium
Let me know if that helps!
1 Like
Sometimes, when adding a marker, the transform: translate3d(...)
attribute is missing, causing the marker to be invisible. When any camera change activity occurs, the transform: translate3d(...)
attribute is applied correctly again, making the marker visible.