how to change (x,y) to geo-location in google-maps v3..
Posted
by zjm1126
on Stack Overflow
See other posts from Stack Overflow
or by zjm1126
Published on 2010-03-31T02:22:44Z
Indexed on
2010/03/31
2:43 UTC
Read the original article
Hit count: 412
google-maps
|JavaScript
in v2:
point = map.fromContainerPixelToLatLng(new GLatLng(x,y));}
in v3 i do this:
point = map.MapCanvasProjection.fromContainerPixelToLatLng(new LatLng(x,y));
and error..
how to do this?
thanks
© Stack Overflow or respective owner