Leaflet #1745

HTML

<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.css">
<script src="http://cdn.leafletjs.com/leaflet-0.6.2/leaflet.js"></script>
    <div class="formulaire_editer_gis">
        <div class="entete-formulaire"><h1>Header</h1></div>
        <div class="form">
            <div id="map"></div>
        </div>
    </div>

CSS

.formulaire_editer_gis,
.entete-formulaire { position: relative; }

#map { height:250px; width: 100%; }

JavaScript

var map = L.map('map', {}).setView([37.9, -77], 5);

L.tileLayer('http://{s}.tiles.mapbox.com/v3/examples.map-y7l23tes/{z}/{x}/{y}.png', {}).addTo(map);

map.on('click', function(e) {
    var marker = new L.Marker(e.latlng, {}).addTo(map); 
});