how to change (x,y) to geo-location in google-maps v3..
- by zjm1126
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