-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 1.19 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
<!DOCTYPE html>
<head>
<title>Oxford Bus Map</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<link rel="stylesheet" href="static/style.css" />
</head>
<body>
<div class="pagecontent textcontent" id="bus-status">
</div>
<div class="pagecontent" id="mapid">
</div>
<div class="pagecontent textcontent" id="text-content">
<p>You can check out some work in progress visualisations of this data on an <a href="https://observablehq.com/@tangohead/oxford-bus-data-visualisation">Observable</a>. They will make their way over here when they are ready!</p>
</div>
<div class="pagecontent textcontent">
This website uses data from the UK Government's Bus Open Data Service. <br> It is built using Leaflet.js. and the bus icon is by <a href="https://freeicons.io/profile/3">icon king1</a> on <a href="https://freeicons.io">freeicons.io</a>.
Made by <a href="https://github.com/tangohead">Matt Smith</a>.
</div>
<script src="static/map.js"></script>
</body>