-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (47 loc) · 3.03 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script src="https://code.jquery.com/jquery-3.5.1.slim.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!-- Include Google Maps JS API -->
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAmnXXTiOa-95LfHKYmiO-3o0JOvpHO6og&sensor=true">
</script>
<script type="text/javascript" src="./src/script.js"> </script>
</head>
<body onload="initMap()" class="border border-primary" >
<nav class="navbar navbar-dark bg-light" class="container-fluid-nav text-center">
<!-- Navbar content -->
<ul class="nav">
<li class="nav-item">
<a class="nav-link "><img src="icons/district.png" style="width: 20%;height:20%;">District Hospital</a>
</li>
<li class="nav-item">
<a class="nav-link"><img src="icons/private.png" style="width: 20%;height:20%;">Private Hospital</a>
</li>
<li class="nav-item">
<a class="nav-link" ><img src="icons/other.png" style="width: 20%;height:20%;">Other Hospital</a>
</li>
</ul>
<div class="form-inline">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeMm5zm-syGnw-l06QV2q6caFtNldS3nBsAoIPzs3G2e4-ncg/viewform" class="btn btn-danger btn-sm active" target="blank" role="button" aria-pressed="true">Feedback on this Map</a>
<a href="https://www.ineff.ch/cov19testmap/" class="btn btn-success btn-sm active" target="blank" role="button" aria-pressed="true">Testing Map</a>
<a href="https://elolelo.github.io/covid19/" class="btn btn-dark btn-sm active" target="blank" role="button" aria-pressed="true">Editeable Map</a>
</div>
</nav>
<div id="mapDiv" class="container-fluid"></div>
<footer class="navbar navbar-dark bg-light" class="blockquote-footer">
<ul class="nav nav-tabs">
<li><a href="https://github.com/elolelo" target="blank"> N Mtsweni </a> , </li>
<li><a href="https://github.com/MikeMcMalace" target="blank"> H Combrink </a> , </li>
<li><a href="https://github.com/vukosim" target="blank"> V Marivate </a> , </li>
<li ><a href="https://github.com/dsfsi/covid19za/graphs/contributors" target="blank"> Data Science for Social Impact @UP, COVID19za contributors</a></li>
</ul>
<cite title="Source Title">
Supported by: <a href="https://cloud.google.com/" target="blank">GCP </a>and <a href="https://www.iau.org/development/" target="blank"> IAU </a>
<a href="https://github.com/dsfsi/covid19za" target="blank" class="btn btn-success btn-sm active" role="button" aria-pressed="true"> Repo for Data </a> Icons: <a href="https://www.iconfinder.com/">Iconfinder</a></cite></footer>
</body>
</html>