I am quite new to OpenLayers, and already stuck on my first problem. I am trying to convert "normal" coordinates, which I copied from Google Maps to OSM ones to center my map to a certain area. Now as far as i understood ist the "normal" coordinate system EPSG:4326 and the OSM one is EPSG:3857 or EPSG:900913, which is the same. so my Javascript code is:
map.setCenter(new OpenLayers.LonLat(53.537460, 9.953227).transform(new OpenLayers.Projection("EPSG:4326"), new OpenLayers.Projection("EPSG:3857")), 5);
But this centers to a total different location. what am I missing?