-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmap.html
35 lines (32 loc) · 1.29 KB
/
map.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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<title>Bidifus, improve your transit !</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no'/>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.48.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.48.0/mapbox-gl.css' rel='stylesheet'/>
<link href='index.css' rel='stylesheet'/>
</head>
<body>
<header id="header">
<a href="index.html">
<img src="logo_bifidus_header.png" alt="logo" height="60" width="90" class="logo">
</a>
<div class="title">
Bifidus
<br>
<small>Improve your transit !</small>
</div>
</header>
<main>
<div id='map'></div>
<div class='map-overlay' id='popup'></div>
<div class='zoom-overlay' id='zoom-overlay'>Zoomez encore un peu pour voir toutes les erreurs ;)</div>
</main>
<script src="https://unpkg.com/[email protected]/src/transport_thumbnail.js"></script>
<script src="display.js"></script>
<script src="modules.js"></script>
<script src="map.js"></script>
</body>
</html>