15 lines
494 B
Plaintext
15 lines
494 B
Plaintext
|
<carte>
|
||
|
|
||
|
<div id="map" style="width: 600px; height: 400px;"></div>
|
||
|
|
||
|
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js" integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin="">
|
||
|
|
||
|
var map = L.map('map').setView([51.505, -0.09], 13);
|
||
|
|
||
|
var tiles = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||
|
maxZoom: 19,
|
||
|
attribution: '© <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
|
||
|
}).addTo(map);
|
||
|
|
||
|
</script>
|
||
|
</carte>
|