With OpenLayers, I'm trying to use a Google map layer as a base layer for a map which will display an overlay layer of custom data. My custom layer seems to have an offset related to the Google's layer and both have different projection values (as you may know google's projection is EPSG:900913, but mine is EPSG:32721)
Any ideas of how this match can be achieved?
Thanks in advance!
feature.geometry.transform(new Openlayers.Projection("EPSG:32721"), new Openlayers.Projection("EPSG:900913"));– aviaron Jun 14 '11 at 7:35