-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>On-Time Performance</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.js"></script>
<link
href="https://api.tiles.mapbox.com/mapbox-gl-js/v2.6.1/mapbox-gl.css"
rel="stylesheet"
/>
<link href="./style.css" rel="stylesheet" />
</head>
<body>
<div id="map">
<div id="chartbox">
<div id="header">
Welcome to DVRPC's Regional Transit Screening Priority Tool (RTSP).
</div>
<div id="routedesc">Please click a transit line!</div>
<div class="chart-container">
<canvas id="chart"></canvas>
</div>
</div>
</div>
<script src="/js/main.js" type="module"></script>
</body>
</html>