-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (63 loc) · 2.29 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
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
65
66
67
68
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Carte interactive des bus en temps réel."
/>
<meta
name="keywords"
content="bus, transport, carte, temps réel, mobilité"
/>
<meta name="author" content="github.com/MickaelMd" />
<meta
http-equiv="Content-Security-Policy"
content="
default-src 'self';
img-src 'self' data: https://*.tile.openstreetmap.org;
script-src 'self' https://unpkg.com https://openstreetmap.org;
style-src 'self' https://fonts.googleapis.com https://unpkg.com;
font-src 'self' https://fonts.gstatic.com;"
/>
<meta property="og:title" content="Carte des Bus" />
<meta
property="og:description"
content="Carte interactive des bus en temps réel."
/>
<meta property="og:image" content="assets/img/bus_icon.png" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Carte des Bus" />
<meta
name="twitter:description"
content="Carte interactive des bus en temps réel."
/>
<meta name="twitter:image" content="assets/img/bus_icon.png" />
<title>Carte des Bus</title>
<link rel="icon" href="assets/img/bus_icon.png" type="image/png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js" defer></script>
<script type="module" src="app.js" defer></script>
</head>
<body>
<div id="map"></div>
<div id="btn_section">
<button id="refresh_btn">Mettre à jour la carte</button>
<button id="stopbus_btn">
<img src="assets/img/logo_arret.png" alt="Arrêt de bus" />
</button>
</div>
<div id="error">
<p id="error_msg"></p>
</div>
</body>
</html>