<!DOCTYPE html> 
 
<html> 
<head> 
<title>Test Maperitive + Leaflet</title> 
<link rel="stylesheet" href="leaflet/leaflet.css" /> 

<style> 
html, body, #map {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
}
</style> 
 
</head> 
 
<body> 
 
<div id="map"> 
</div> 
 
        <script src="leaflet/leaflet.js"></script> 
        <script> 
                var map = new L.Map('map');
                
                var     osmUrl = 'Tiles/{z}/{x}/{y}.png',
                        osmAttribution = 'Map data © 2011 OpenStreetMap contributors',
                        osm = new L.TileLayer(osmUrl, {minZoom:12, maxZoom: 16, attribution: osmAttribution});
                
                map.setView(new L.LatLng(47.44, 6.82), 15).addLayer(osm);
        </script> 
 
</body> 
</html>