I am trying to make a div visible at the position of the cursor when the cursor mouseover a marker using jQuery. Its kind of like a tooltip. However I cannot se
div
The solution that works for me is more straight forward:
map.data.addListener('mouseover', function (event) { posX = event.ub.clientX; posY = event.ub.clientY; });