-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 763 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 763 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Map Animation</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<script src="https://api.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.js"></script>
<link href="https://api.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.css" rel="stylesheet" />
<link href="./styles.css" rel="stylesheet" />
</head>
<body>
<div id="map"></div>
<script src="./mapmarker.js"></script>
</body>
<body>
<div id="map"></div>
<div class="map-overlay top">
<button style="font-size: 2em" onclick="move()">
Show stops between MIT and Harvard
</button>
</div>
<script src="./mapanimation.js"></script>
</body>
</html>