-
Notifications
You must be signed in to change notification settings - Fork 0
/
transportation.html
53 lines (51 loc) · 2.04 KB
/
transportation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title></title>
<link rel="stylesheet" href="http://js.arcgis.com/3.17/esri/css/esri.css">
<!-- Bootstrap only required for demo page -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.chart-spec {
margin-top: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 id="pageTitle"></h2>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h4 id="chartTitle">Chart</h4>
<div id="chart"></div>
</div>
<div class="col-md-6">
<h4>Map</h4>
<div id="map"></div>
</div>
</div>
</div>
<!-- <script src="/socket.io/socket.io.js"></script> -->
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//vega.github.io/vega/vega.js"></script>
<script src="//vega.github.io/vega-lite/vega-lite.js"></script>
<script src="//vega.github.io/vega-editor/vendor/vega-embed.js" charset="utf-8"></script>
<script src="//cdn.jsdelivr.net/lodash/4.14.0/lodash.min.js"></script>
<script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
<script src="https://www.amcharts.com/lib/3/serial.js"></script>
<script src="https://www.amcharts.com/lib/3/themes/none.js"></script>
<script src="./dist/bundle.js"></script>
<script src="http://js.arcgis.com/3.17/"></script>
<script src="./specs.js"></script>
<script src="./transportation.js"></script>
</body>
</html>