views:

170

answers:

1

this is my code:

google.maps.event.addListener(marker, 'dragend', function(event) {
   alert(event.pageX)//undefined
});

and i want to get the (x,y) about mouse when dragend..

thanks

A: 

you can get event.pixel and that will give you a x,y object that is relative to the mapDiv's position. If you want absolute position on the page then you will need to add the offset of the mapDiv to that result.

skarE