-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html~
146 lines (119 loc) · 4.01 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!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 -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Outbreak Monitor by Mavericks</title>
<link href="css/bootstrap.min.css" rel="stylesheet" >
<link href="css/layout.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
var availableTags = [
"fever",
"chronic disease",
"appendix",
"colon cancer",
"breast cancer",
];
$( "#medcode" ).autocomplete({
source: availableTags
});
} );
</script>
<script>
$( function() {
var availableTags = [
"leg pain",
"back pain",
"head ache",
"Cold",
"Flue",
];
$( "#medsymptom" ).autocomplete({
source: availableTags
});
} );
</script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script>
google.charts.load('upcoming', { 'packages': ['map'] });
google.charts.setOnLoadCallback(drawMap);
function drawMap() {
var data = google.visualization.arrayToDataTable([
['Country', 'Population'],
['China', 'China: 1,363,800,000'],
['India', 'India: 1,242,620,000'],
['US', 'US: 317,842,000'],
['Indonesia', 'Indonesia: 247,424,598'],
['Brazil', 'Brazil: 201,032,714'],
['Pakistan', 'Pakistan: 186,134,000'],
['Nigeria', 'Nigeria: 173,615,000'],
['Bangladesh', 'Bangladesh: 152,518,015'],
['Russia', 'Russia: 146,019,512'],
['Japan', 'Japan: 127,120,000']
]);
var options = {
showTooltip: true,
showInfoWindow: true
};
var map = new google.visualization.Map(document.getElementById('chart_div'));
map.draw(data, options);
};
</script>
</head>
<body>
<header>
<div class="row">
<div class="col-sm-12">
<h1>Outbreak Monitor</h1>
<h2>The Story of Health</h2>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-3 col-xl-2 okFilters">
<form>
<div class="form-group">
<input class="form-control input-lg" type="text" placeholder="Medical Code" id="medcode" length="10" size="10">
</div>
<div class="okOr">or</div><br />
<div class="form-group">
<input class="form-control input-lg" type="text" placeholder="Symptom/Disease" id="medsymptom">
</div>
<div class="form-group">
<input class="form-control input-lg" type="text" placeholder="Hospital" id="hospital">
</div>
<div class="form-group">
put time slider component here
<br />
6 months <a>1 year</a> <a>2 years</a>
</div>
</form>
</div>
<div class="col-sm-12 col-md-9 col-xl-10">
<div id="chart_div"></div>
put map here
</div>
</div>
</div>
<footer>
<p>© 2016 The Mavericks</p>
</footer>
</body>
</html>