-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats-handicaps-gmap.html
166 lines (156 loc) · 7.91 KB
/
stats-handicaps-gmap.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Blindness Statistics Website</title>
<!--Bootstrap and css style-->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.css">
<link rel="stylesheet" href="assets/css/smoothproducts.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.js"></script>
<script src="assets/js/smoothproducts.min.js"></script>
<script src="assets/js/theme.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.js"></script>
<script src="https://kit.fontawesome.com/468c51f8b5.js" crossorigin="anonymous"></script>
<!--jQuery-->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!--c3 Chart-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/c3@0.7.20/c3.css">
<script src="https://cdn.jsdelivr.net/npm/c3@0.7.20/c3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.16.0/d3.min.js"></script>
<style>
table,
th,
td {
border: 2px solid black;
}
input {
margin-bottom: 10px;
}
#map {
height: 600px;
width: 100%;
position: relative;
}
</style>
</head>
<body id="page-top">
<nav class="navbar navbar-light navbar-expand-lg fixed-top bg-white clean-navbar">
<div class="container">
<a class="navbar-brand logo" href="index.html">
<i class="fa-solid fa-eye fa-pull-left" style="color: #22a7f0; font-size: 35px"></i>
BlindCare
</a>
<button data-toggle="collapse" class="navbar-toggler" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item" role="presentation"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item dropdown">
<a class="dropdown-toggle nav-link active" data-toggle="dropdown" aria-expanded="false" href="#">Statistics</a>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" role="presentation" href="stats-handicaps-malaysia.html">No of Malaysian Handicaps</a>
<a class="dropdown-item" role="presentation" href="stats-handicaps-schools-compare.html">No of Special Education Schools<br></a>
<a class="dropdown-item" role="presentation"href="stats-handicaps-gmap.html">Locate Nearest Help Centres</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#">Information</a>
<div class="dropdown-menu" role="menu">
<a class="dropdown-item" role="presentation" href="info-page1.html">Types of Vision</a>
<a class="dropdown-item" role="presentation" href="info-page2.html">Symptoms & Causes<br></a>
<a class="dropdown-item" role="presentation"href="info-page3.html">Diagnosis & Treatment<br></a>
<a class="dropdown-item" role="presentation" href="info-page4.html">Visual Impairment (MY)<br></a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<main class="page landing-page">
<section class="clean-block clean-blog-list dark">
<div class="container">
<div class="block-heading">
<h2 class="text-info" style="font-size: 36px;">Help Centres Catered for the Blind</h2>
</div>
<div class="block-content">
<div class="row">
<!-- <div class="col"> -->
<!-- <input type="text" name="search" id="search" placeholder="Search..." />
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<tr>
<td>John doe</td>
<td>10</td>
<td>0987654321</td>
</tr>
<tr>
<td>Jane Doe</td>
<td>34</td>
<td>1234567890</td>
</tr>
<tr>
<td>Bart</td>
<td>44</td>
<td>1234509879</td>
</tr>
</tbody>
</table> -->
<!--Google Map Tab-->
<!--Don't delete-->
<div id="map" style="overflow: hidden;"></div>
<!-- </div> -->
<!-- <div class="col">
</div> -->
</div>
</div>
</div>
</section>
</main>
<footer class="page-footer" style="padding: 0;">
<div class="clean-block add-on social-icons">
<div class="icons">
<div class="text-center my-auto"><span>Copyright © Group-10 2020</span></div>
</div>
</div>
</footer><a class="border rounded d-inline scroll-to-top" href="#page-top"><i class="fas fa-angle-up"></i></a>
<!--Script-->
<script src="assets/js/csv_to_html_table.js"></script>
<script src="assets/js/jquery.dataTables.min.js"></script>
<script src="assets/js/jquery.csv.min.js"></script>
<!--Javascript Files-->
<script src="assets/js/lineChart.js"></script>
<script src="assets/js/piechart.js"></script>
<script src="assets/js/StackedBarChart.js"></script>
<script src="assets/js/areaChart.js"></script>
<script src="assets/js/gmap.js"></script>
<script src="assets/js/table.js"></script>
<!-- Google Map API -->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD6KAMdmz4AK-crwPtg7dFpwI1z1EqkXsM&callback=initAutocomplete"></script>
<script>
// const searchInput = document.getElementById("search");
// const rows = document.querySelectorAll("tbody tr");
// console.log(rows);
// searchInput.addEventListener("keyup", function (event) {
// const q = event.target.value.toLowerCase();
// rows.forEach((row) => {
// row.querySelector("td").textContent.toLowerCase().startsWith(q)
// ? (row.style.display = "table-row")
// : (row.style.display = "none");
// });
// });
</script>
</body>
</html>