-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (22 loc) · 1.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<meta charset="utf-8"/>
<head>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>
<script src="https://api.tiles.mapbox.com/mapbox.js/plugins/leaflet-omnivore/v0.3.1/leaflet-omnivore.min.js"></script>
<script src='https://unpkg.com/@turf/turf/turf.min.js'></script>
<title>Mes voyages à vélo</title>
</head>
<body>
<div class="container">
<div class="left" id="mapid"></div>
<div class="right" id="choroid"></div>
</div>
<script> alert( 'Le chargement prend un peu de temps, cliquez sur OK et revenez dans deux ou trois minutes !' ); </script>
<script src='routes.js'></script>
<script src='departments.js'></script>
<script src='leafletmap.js'></script>
<script src='choromap.js'></script>
</body>
</html>