I have an OpenLayers map with a vector layer to add points on. I'm using Google Maps as the base layer. After the point is added, I need to store the data in my database as lat/long and x/y. Can I transform the projection of the x/y points or convert the lat/long to x/y? The x/y that is on the point is in spherical mercator so it doesn't work for me.
Update: I'm not having any trouble converting the x/y to lat/long. I want to convert the x/y that I have to a different projection. I'm not sure that's the right terminology, but I need to convert the x/y values.
Update: The SRID I need is 3734. When I drop the point, the x/y is like: x: -9058948.6891836 y: 5035248.6338434
But what I need looks more like: x: 2282175.42 y: 545126.58
I'm also using PostGIS so if this is possible to do with PostGIS I'm open to that also.
