Leaflet map

by winsent

HTML

<script src="http://leafletjs.com/dist/leaflet.js"></script>
<link rel="stylesheet" href="http://leafletjs.com/dist/leaflet.css">
<div id="map"></div>

CSS

html,body{
    width:100%;
    height:100%;
    padding:0;
    margin:0;
}
#map{
    width:100%;
    height:100%;
}

JavaScript

var map = L.map('map').setView([51.505, -0.09], 13);
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
    maxZoom: 18
}).addTo(map);