-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.html
78 lines (73 loc) · 2.57 KB
/
app.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<meta name="author" content="CompJCDF">
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'>
<link href="css/main.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header>
<h1 id="title">Health Explorer Wales</h1>
<div id="controls_opener"></div>
<a href="about.html" id="about"></a>
</header>
<section>
<div id="map"></div>
<div id="control_panel">
<h2>Datasets</h2>
<div id="add_data"></div>
<ul id="data_sets"></ul>
</div>
<div id="show_hospitals"><span></span></div>
<div id="timeline">
<div></div>
</div>
</section>
<div id="config_overlay">
<div id="config">
<h2>Add new dataset</h2>
<textarea id="descriptor" placeholder="JSON description"></textarea>
<textarea id="csv_data" placeholder="CSV data"></textarea>
<button id="store_data">Add data</button>
<button id="close_config">Cancel</button>
<input type="hidden" value='
{
"name": "",
"attribution_url": "",
"attribution_desc": "",
"attribution_org": "",
"data_type": "",
"mapdesc":
{
"type": "",
"field_indx": 0
},
"attributes":
[
{
"name": "",
"field_indx": [],
"type": ""
}
]
}'
id="template" />
</div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.1.0/topojson.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.9/c3.min.js"></script>
<script src="js/app/app.js"></script>
<script src="js/app/vis.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58934753-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>