-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiss.html
58 lines (49 loc) · 2.13 KB
/
iss.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/layout.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Audiowide|Lora|Roboto" rel="stylesheet" />
</head>
<body>
<header>
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="iss.html" class="active">ISS Page</a></li>
<li><a href="wiki.html">Wiki Page</a></li>
</ul>
</nav>
</header>
<content class="map-content">
<div id="mapCanvas" class="map"></div>
</content>
<aside class="map-aside">
<iframe src="http://www.ustream.tv/embed/9408562?html5ui=1" allowfullscreen="true" webkitallowfullscreen="true" scrolling="no" frameborder="0" id="liveStream"></iframe>
</aside>
<section class="cmd-info">
<div class="empty"><br/><br/><br/></div>
<div id="stringUserName" class="cmdData"> </div>
<div id="stringUserLoc" class="cmdData"> </div>
<div id="userIsLocatedAt" class="cmdData"> Geotracking unavailable </div>
<div id="theISSIsLocatedLat" class="cmdData"> </div>
<div id="theISSIsLocatedLng" class="cmdData"> </div>
<div id="userISSLocateReq" class="cmdData"> </div>
<div id="stringISSLoc" class="cmdData"> </div>
<button onclick="geoTracked()" id="geoButton">Geo-Locate</button>
</section>
<footer><p>© 201 6 - Uber Space Cadets</p></footer>
<!-- Parking for ISS overhead pass estimator API-->
<!-- Parking for ISS location API -->
<!-- This script calls the google API to allow maps to be rendered-->
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDajRBtGGCaz958ss2pOvejMODnI4lhrr0&callback=initMap"
async defer></script>
<script src="js/map.js"></script>
<script src="js/app.js"></script>
<script src="js/geo.js"></script>
<script>window.onload = welcome();</script>
<!-- Parking for overhead.js || to be consolidated into app.js -->
</body>
</html>