-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (125 loc) · 3.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Chalo - BEST Mumbai bus route explorer</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<!-- UIkit CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.16.15/dist/css/uikit.min.css" />
<!-- UIkit JS -->
<script src="https://cdn.jsdelivr.net/npm/uikit@3.16.15/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/uikit@3.16.15/dist/js/uikit-icons.min.js"></script>
<!-- Mapbox GL -->
<link href="https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.css" rel="stylesheet">
<script src="https://api.mapbox.com/mapbox-gl-js/v2.14.1/mapbox-gl.js"></script>
<script
src="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v5.0.0/mapbox-gl-geocoder.min.js"></script>
<link rel="stylesheet"
href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v5.0.0/mapbox-gl-geocoder.css"
type="text/css">
<!-- Turf -->
<script src="https://cdn.jsdelivr.net/npm/@turf/turf@6/turf.min.js"></script>
<style>
body {
width: 100%;
background-image: url(./assets/background.jpg);
}
#map-container {
position: fixed;
top: 0;
display: flex;
align-items: stretch;
width: 100%;
background-color: #FFF5F5;
justify-content: center;
height: 480px;
}
#map {
flex-grow: 1;
}
#map-overlay {
position: absolute;
top: 0;
left: 0;
padding: 2px;
z-index: 100;
background-color: rgba(255, 255, 255, 0.965);
}
article {
position: relative;
background-color: #ffffff;
margin-top: 480px;
z-index: 1000;
font-size: 1rem;
}
article>* {
padding: 8px;
}
article li span {
margin-left: 5px;
}
article li span:first-child {
font-weight: bold;
}
.geocoder {
position: absolute;
z-index: 101;
width: 50%;
left: 50%;
margin-left: -25%;
top: 10px;
}
.mapboxgl-ctrl-geocoder {
min-width: 100%;
}
#walking-time {
font-size: 12px;
}
@media screen and (min-width: 600px) {
body {
display: flex;
height: 100vh;
flex-direction: row-reverse;
align-items: stretch;
}
article {
width: 400px;
overflow: auto;
margin-top: 0;
}
#map-container {
flex-grow: 1;
width: 10px;
height: 100%;
position: relative;
}
}
@media screen and (min-width: 1000px) {
article {
width: 500px;
}
}
</style>
</head>
<body>
<div id="map-container">
<div id="geocoder" class="geocoder"></div>
<div id="map">
<div id="map-overlay"></div>
</div>
</div>
<article id="content">
<header>
BEST Bus Route Explorer
</header>
<div id="stop-eta">
</div>
<section>
</section>
</article>
<script>
UIkit.modal(document.getElementById("intro-panel")).show();
</script>
<script src="./app.js"></script>
</body>
</html>