I know that method exists and is documented, but I don't know how to get an MapCanvasProjection object.
|
|
|
Look at http://qfox.nl/notes/116
Ugly indeed. Much easier in v2 - another flaw of google api v3! |
|||||||
|
|
I wasn't satisfied with the answers here. So I did some experiments and found the "simplest" working solution, which is close to Ralph's answer, but hopefully more understandable. (I wish Google makes this feature more accessible!) First you declare a subclass of
Then somewhere else in your code where you instantiate the map, you also instantiate this OverlayView and set its map, like so:
Then, whenever you need to use
Note that because the MapCanvasProjection object will only be available once |
|||
|
To get a MapCanvasProjection you could derive a class from OverlayView and call the getProjection() method which returns a MapCanvasProjection type onAdd(), draw() and onRemove() must be implemented to derive from OverlayView.
then when you're creating your map
For V2 you should be able to call fromLatLngToDivPixel from your GMap2 instance
|
|||||||||||||
|
|
|||||||||||
|
|
I think the easiest way is to ignore Google's desire to make our life harder by removing and hiding useful functions instead of adding new ones, and just to write your own methods that do the same thing. Here's a version of a function somebody posted somewhere else (I can't find it right now), that worked for me:
Now you can call it any time and any where you want. I especially needed it for custom context menus, and it does it's job perfectly. EDIT: I also wrote a reverse function, fromPixelToLatLng that does exactly the opposite. It is simply based on the first one, with some math applied:
|
|||||
|
|