In my web page, I am trying to use google map in which i can drag and drop markers around. The problem is that while i drag a special marker, the mouse over and mouse out events of the other markers are not triggered .
Well, i understand that a Google Map uses the following layers: floatPane, overlayMouseTarget, floatShadow, overlayImage, overlayShadow, overlayLayer, mapPane,
and the markers belong to overlayImage layer. Also, the reason why the mouse over and out events are not triggered is because the draggable marker "absorbs" the events that never reach to the marker behind.
Example: I have markers m1, m2 and m3. Marker m3 is draggable. I want to drag m3 around and when it passes on top of m1 and m2 , mouse over events of m1 and m2 to be triggered.
Question 1: In which layer is the draggable object belongs ? (I assume overlayMouseTarget).
Question 2: Can i change the layer that a marker belongs ? That way i will be able to modify it's z-index.
Thank you for your time.