Files
ffsaf-site/src/main/webapp/public/club-maps.html
Thibaut Valentin 8ecb9d714f
All checks were successful
Deploy Production Server / if_merged (pull_request) Successful in 5m26s
update(map): public club map
2025-01-20 15:40:09 +01:00

20 lines
652 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Où pratiquer le MSF ?</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
</head>
<body>
<div id="map" style="width: 100%; height: 95vh"></div>
<script src="club-maps.js"></script>
</body>
</html>