-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tracking Curiosity</title>
<link href="css/normalize.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
</head>
<body>
<div class="fixed">
<div id="map" class="map"></div>
<div class="graph"></div>
</div>
<div id="section-container" class="scroll-pane">
<section>
<h3>Tracking Curiosity</h3>
<p>Explore what Curiousity has been up to. Scroll down to view the drive log, click points along the path on the map, or click bars on the elevation chart.</p>
</section>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="http://maps.google.com/maps?file=api&v=3"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="js/openlayers/OpenLayers.js"></script>
<script src="js/mapping.js"></script>
<script src="js/app.js"></script>
</body>
</html>