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
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.
精彩评论