<!DOCTYPE HTML> <html> <head> <title>OpenLayers Demo</title> <style type="text/css"> html, body, #basicMap { width: 100%; height: 100%; margin: 0; } </style> <script src="OpenLayers.js"></script> <script> function init() { map = new OpenLayers.Map("basicMap"); var mapnik = new OpenLayers.Layer.OSM(); var fromProjection = new OpenLayers.Projection("EPSG:4326"); // Transform from WGS 1984 var toProjection = new OpenLayers.Projection("EPSG:900913"); // to Spherical Mercator Projection var position = new OpenLayers.LonLat(8.663283,50.090956).transform( fromProjection, toProjection); // BKG var zoom = 15; map.addLayer(mapnik); map.setCenter(position, zoom ); } </script> </head> <body onload="init();"> <div id="basicMap"></div> </body> </html>