I have polyline in my map. I want to know the pixel (screen) xy-coordinates, when user clicks the polyline. Click event only returns the LatLng object, so do anyone have a clue how to get the pixel coordinates from latLng?

I would appreciate very much if someone could help me!

link|improve this question
when you say pixel coordinates do you mean x y coordinates of the mouse? – kjy112 Mar 29 '11 at 13:39
Yep, exactly and the xy of the container div – SuperCell Mar 29 '11 at 18:49
feedback

1 Answer

Ok, I found the solution. You have to use google.maps.OverlayView, it's so stupid implementation. The exampple I found, is here: http://www.william-map.com/20100416/1/map.htm

Hope this helps someone.

link|improve this answer
Note: (and this stumped me for a good half-hour) - make sure to create the overlay when you create the map, and NOT when you need the coordinates (via fromLatLngToDivPixel). If you do, you get Uncaught TypeError: Cannot call method 'fromLatLngToDivPixel' of undefined. It looks like Google does some of this stuff asynchronously. – AlexeyMK Aug 11 '11 at 22:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.