-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransportsNantes.html
64 lines (48 loc) · 2.31 KB
/
transportsNantes.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Stylesheet de leaflet (carte) -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin="" />
<!-- <link href="https://fonts.googleapis.com/css2?family=Arimo&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@300&display=swap"
rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cssgrid-generator.netlify.app/"> -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<title>En voiture à Nantes</title>
</head>
<body>
<h1>LA VOITURE A NANTES <br>DANS VOTRE POCHE</h1>
<div id="time"></div>
<h2 id="mapTitle">Carte du traffic routier à Nantes</h2>
<div id="map"></div>
<div class="progressbar">
<div></div>
</div>
<div class="container">
<input type="button" value="Trouvez les parkings disponibles"
onclick="fetchParkingRelais();fetchParkingPublics()">
<div class="parent">
</div>
<!-- Voici les disponibilités dans les parkings publics : -->
</div>
<div class="parking">
<h2 class="hide" id="title"> Trouvez une place dans un parking relais : </h2>
<div id="parkingsRelais" class="parking"></div>
<h2 class="hide" id="Titre"> Trouvez une place dans un parking public : </h2>
<div id="parkingsPublics" class="parking"></div>
</div>
<!-- <h2> La liste des parkingRelais disponibles </h2> -->
<!-- ajout de leaflet.js + emplacement de la carte -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script>
<!-- Ne pas remonter le lien vers le script JS pour ne pas perturber l'affichage de la carte. -->
<script src="transportsNantes.js"></script>
</body>
</html>