-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>How to get to the venue?</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.css" rel="stylesheet" />
<link rel="stylesheet" href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-directions/v4.0.2/mapbox-gl-directions.css" type="text/css" />
<link rel="stylesheet" href="styles/main.css" />
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v1.4.1/mapbox-gl.js"></script>
<script src="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-directions/v4.0.2/mapbox-gl-directions.js"></script>
</head>
<body>
<div class="tabset">
<input type="radio" name="tabset" id="tab1" data-id="map1" checked />
<label for="tab1">Where are we?</label>
<input type="radio" name="tabset" id="tab2" data-id="map2"/>
<label for="tab2">From Central Railway Station</label>
<input type="radio" name="tabset" id="tab3" data-id="map3"/>
<label for="tab3">From Chopin Airport</label>
<div class="tab-panels">
<section id="venue" class="tab-panel">
<div class="map-container">
<div id="map1" class="map"></div>
</div>
</section>
<section id="railway" class="tab-panel">
<div class="map-container">
<div id="map2" class="map"></div>
</div>
</section>
<section id="airport" class="tab-panel">
<div class="map-container">
<div id="map3" class="map"></div>
</div>
</section>
</div>
</div>
<script src="scripts/main.js"></script>
</body>
</html>