-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard-ais.html
69 lines (61 loc) · 3.43 KB
/
dashboard-ais.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
<!DOCTYPE html>
<html>
<head>
<title>NOMAD Buoy @ CSR</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<!-- Main style sheet -->
<link href="style.css" rel="stylesheet" type="text/css">
<!-- EXTERNAL LIBS-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.slim.js" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js" integrity="sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw" crossorigin="anonymous"></script>
</head>
<body class="body-dark">
<nav class="navbar navbar-default navbar-inverse">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">CSR</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="dashboard-weather.html">Weather Sensor</a></li>
<li><a href="dashboard-nomad.html">NOMAD System Stats</a></li>
<li><a href="dashboard-cameras.html">Cameras</a></li>
<li class="active"><a href="dashboard-ais.html">AIS Vessel Info</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container container-cameras" style="padding-top:20px">
<div class="row">
<div class="col-md-12"
<div class="iframe-container">
<h1>AIS Vessel Information:</h1>
<script type="text/javascript">
width='100%'; // the width of the embedded map in pixels or percentage
height='450'; // the height of the embedded map in pixels or percentage
border='0'; // the width of the border around the map (zero means no border)
shownames='true'; // to display ship names on the map (true or false)
latitude='33.60827'; // the latitude of the center of the map, in decimal degrees
longitude='-118.108'; // the longitude of the center of the map, in decimal degrees
zoom='10'; // the zoom level of the map (values between 2 and 17)
maptype='1'; // use 0 for Normal Map, 1 for Satellite, 2 for OpenStreetMap
trackvessel='0'; // MMSI of a vessel (note: vessel will be displayed only if within range of the system) - overrides "zoom" option
fleet=''; // the registered email address of a user-defined fleet (user's default fleet is used)
</script>
<script type="text/javascript" src="https://www.marinetraffic.com/js/embed.js"></script>
</div>
</div>
</div>
</body></html>