-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracking.html
155 lines (121 loc) · 4.34 KB
/
tracking.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
<!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">
<meta name="keywords" content="">
<meta name="description" content="">
<!-- Site title
================================================== -->
<title>SEER GPS Tracker</title>
<!-- Bootstrap CSS
================================================== -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Animate CSS
================================================== -->
<link rel="stylesheet" href="css/animate.min.css">
<!-- Font Icons CSS
================================================== -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/ionicons.min.css">
<!-- Main CSS
================================================== -->
<link rel="stylesheet" href="css/style.css">
<!-- Google web font
================================================== -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,300' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- Preloader section
================================================== -->
<div class="preloader">
<div class="sk-spinner sk-spinner-pulse"></div>
</div>
<!-- Navigation section
================================================== -->
<div class="nav-container">
<nav class="nav-inner transparent">
<div class="navbar">
<div class="container">
<div class="row">
<div class="brand">
<a href="tracking.html">- SEER -</a>
</div>
<div class="navicon">
<div class="menu-container">
<div class="circle dark inline">
<i class="icon ion-navicon"></i>
</div>
<div class="list-menu">
<i class="icon ion-close-round close-iframe"></i>
<div class="intro-inner">
<ul id="nav-menu">
<li><a href="tracking.html">Tracking</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="logout.php">Log Out</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<!-- Header section
================================================== -->
<section id="header" class="header-one">
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6 col-sm-offset-2 col-sm-8">
<div class="header-thumb">
<h1 class="wow fadeIn" data-wow-delay="1.6s">SEER GPS Tracker</h1>
<h3 class="wow fadeInUp" data-wow-delay="1.9s">EYE Of Security</h3>
</div>
</div>
</div>
</div>
</section>
<div class="home-post" style="background-color:black;">
<h2>Route Pathway Tracker</h2><br>
<p>
- Security Guard's pathway -
</p><br>
<img src="Images/Individual_Plots/plot_SecGuardID_1.png" alt="Image">
<img src="Images/Individual_Plots/plot_Ideal.png" alt="Image">
<button onclick="runSeer()"> Run Seer </button>
location.reload();
<br><br>
</div>
<!-- Footer section
================================================== -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<p class="wow fadeInUp" style="color:white" data-wow-delay="0.3s">Copyright © 2023 SEER</p>
<ul class="social-icon wow fadeInUp" data-wow-delay="0.6s">
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-dribbble"></a></li>
<li><a href="#" class="fa fa-behance"></a></li>
<li><a href="#" class="fa fa-google-plus"></a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Javascript
================================================== -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/isotope.js"></script>
<script src="js/imagesloaded.min.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/IndexJavascript.js"></script>
</body>
</html>