-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreport.html
75 lines (59 loc) · 2.68 KB
/
report.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
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript" src="/resources/js/report.js"></script>
<script type="text/javascript" src="external/js/jquery-3.1.1.js"></script>
<link rel="stylesheet" type="text/css" href="external/css/ionicons.min.css">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link rel="stylesheet" type="text/css" href="resources/css/maps.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,300i,400" rel="stylesheet">
<title>Traffic Vision</title>
</head>
<body>
<header>
<nav>
<div class="row">
<a href="#"> <!--link to index.html-->
<img src="resources/img/logo.png" alt="Traffic Vision Logo" class="nav-logo">
</a>
<ul id="pages" class="main-nav">
<li><a href="#">Search</a></li> <!--link to index.html-->
<li><a href="#"><b>Report</b></a></li> <!--link to report.html-->
<li><a href="#">Help</a></li> <!--link to help.html-->
<li><a href="#"><i class="ion-power"></i></a></li> <!--link to login.html-->
</ul>
</div>
</nav>
</header>
<h1>Report Generation</h1>
<div class="row">
<section class="sidebar">
<h2>Filters</h2>
<!-- dropdown menus -->
</section>
</div>
<div class="row">
<h2>My Google Maps Demo</h2>
<div id="map"></div>
<!--
<script>
function initMap() {
var uluru = {lat: -25.363, lng: 131.044};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 4,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
</script>
-->
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAxKAbTtKDKGJL62koh5wns8Fv1pYa9f3E&callback=initMap">
</script>
</div>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>