-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (57 loc) · 3.34 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
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
<!doctype html>
<html class="no-js" lang="en" style="height:100%;">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Transit Party</title>
<link rel="stylesheet" href="css/leaflet.css">
<link rel="stylesheet" href="css/foundation.css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/leaflet-src.js"></script>
<script src="js/leaflet-pip.min.js"></script>
<script src="js/topojson.js"></script>
<script src="js/lodash.min.js"></script>
<script src="js/transitparty.js"></script>
<script src="js/modernizr.js"></script>
<link rel="icon" type="image/png" href="img/favicon.png" />
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<!--[if IE]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body style="height:100%;">
<div class="large-3 columns" style="background-color:#008cba;height:100%;" id="legend">
<img style="display:block; margin: 0 auto; width:100%; max-width:327px;" src="img/bus.png">
<img style="display:block; width:100%; max-width:327px; margin: 0 auto; margin-top: -30px;" src="img/otp.png">
<!LOCATION!>
<div class="row">
<div class="small-9 small-centered columns">
<div class="small-9 large-9 columns">
<input type="text" placeholder="Your Location" id="searchBox"/>
</div>
<div class="small-3 large-3 columns">
<div id="geolocate" class="locationthingie"></div>
</div>
</div>
</div>
<a href="#" data-dropdown="drop" class="button dropdown" style="display: block; margin: 0 auto; max-width: 400px;"><img style="width: 75%; display: block; margin: 0 auto;" src="img/rainbow.png"></a><br>
<ul id="drop" data-dropdown-content class="f-dropdown">
<li><a href="#"><img src="img/dropdown.png"></a></li>
</ul>
<div id="text" style="color:white;font-size: 15px; weight: bold; ">
<p style="font-family:"Helvetica Neue">Are you down with OTP? Enter your location above or click on the map to find total transit time from your location to anywhere in Omaha.</p>
<!SOURCES!>
<img style="display:block; margin: 0 auto;" src="img/sources.png">
<p style="font-size: 7px; text-align: center;">Street data courtesy of © OpenStreetMap contributors, Tiles Courtesy of <a href="http://www.mapquest.com/" target="_blank">MapQuest</a>,Transit data courtesy of <a href="http://www.ometro.com/"> Omaha Metro </a>, © OpenStreetMap contributors, <a href="www.opendatacommons.org/licenses/odbl">License terms </a>, Tiles courtesy of <a href="http://www.mapquest.com/">MapQuest</a>, and transit feed data from <a href="http://ometro.com/bus-system/system-map">Omaha Metro Transit</a>. Heat map inspired by the <a href="http://project.wnyc.org/transit-time">WNYC Transit Time Project </a>
</p>
</div>
</div>
<div class="large-9 columns" style="background-color: white; height:100%;" id="map">
<!--<p> this is far right 8 columns </p>-->
</div>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>