37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="fr-FR">
|
||
|
<meta charset="UTF-8">
|
||
|
<head>
|
||
|
<!-- Lien vers fiche Leaflet CSS -->
|
||
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||
|
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin="" />
|
||
|
<!-- Import bibliothèque Leaflet.js -->
|
||
|
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||
|
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script>
|
||
|
<!-- Lien vers doc style CSS -->
|
||
|
<link rel="stylesheet" href="style.css" />
|
||
|
|
||
|
|
||
|
|
||
|
<!-- Lien vers librairie Cluster (fonctionne si et seulement si le serveur est online) -->
|
||
|
<link rel="stylesheet" href="Leaflet.markercluster-1.4.1\dist\MarkerCluster.css"/>
|
||
|
<link rel="stylesheet" href="Leaflet.markercluster-1.4.1\dist\MarkerCluster.Default.css"/>
|
||
|
<script src="Leaflet.markercluster-1.4.1/dist/leaflet.markercluster.js" crossorigin=""></script>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="map"></div>
|
||
|
|
||
|
<select id="three-select">
|
||
|
<option value="default">Veuillez choisir une arbre</option>
|
||
|
<option value="baum">Baum</option>
|
||
|
<option value="boudoir">Boudoir</option>
|
||
|
</select>
|
||
|
|
||
|
<!-- Lien vers doc JS -->
|
||
|
<script type="module"src="app.js"> </script>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|