-
Notifications
You must be signed in to change notification settings - Fork 0
/
traffic.html
40 lines (36 loc) · 900 Bytes
/
traffic.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="dist/graphlib.js"></script>
<script src="dist/panzoom.min.js"></script>
<title>Traffic</title>
<style>
body,
html {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
path {
fill: none;
}
</style>
</head>
<body>
<div>
<p>Passenger Flow Map takes some time to generate, please be patient </p>
<hr>
<span>Passenger Flow Line Width:</span>
<input type="range" min="1" max="10" value="5" step="1" onchange="changeLineWidth(this.value * 0.2)">
<button id="export-data">Export Data</button>
</div>
<svg width="100%" height="100%">
<g id='map'>
</g>
</svg>
<script src="traffic.js"></script>
</body>
</html>