-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
116 lines (110 loc) · 4.33 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Boston Bike Network Plan</title>
<link rel="stylesheet" href="static/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="static/leaflet.ie.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" href="static/slider.css"/>
<link rel="stylesheet" type="text/css" href="static/style.css"/>
</head>
<body>
<div id="map">
<div class="overlay-left">
<h3>Boston Bike Network Plan</h3>
<h4>
<img id="bikesymbol" src="static/regbike.png"/>
<span id="year">2013</span>
</h4>
<div id="yearslider">
</div>
<br/>
<small>Drag the slider to map existing and planned routes</small>
<!--
<button id="seeplanned5" class="btn btn-primary">5 Year Plan</button>
<br/>
<button id="seeplanned30" class="btn btn-primary">30 Year Plan</button>
-->
</div>
<div class="overlay-left lower">
<h4>Layers</h4>
<span id="shareduse" class="thinkey mainkey" title="">_</span>
<span id="protected" class="thinkey mainkey" title="">_</span>
<span id="exclusive" class="thinkey mainkey" title="">_</span>
<span id="sharedroad" class="thinkey mainkey" title="">_</span>
<span id="sharedlane" class="thinkey mainkey" title="">_</span>
<span id="recommended" class="thinkey mainkey" title="">_</span>
<span id="primaryrt" class="thinkey primarykey" title="">_</span>
<span id="secondaryrt" class="thinkey primarykey" title="">_</span>
<div id="imagery" class="layer">
<div class="layer-symbol">_</div>
<span class="layer-label">Aerial Photo</span>
</div>
<div id="mbta" class="layer">
<div class="layer-symbol">_</div>
<span class="layer-label">MBTA Stations</span>
</div>
<div id="hubway" class="layer">
<div class="layer-symbol">_</div>
<span class="layer-label">Hubway Stations</span>
</div>
<div id="primary" class="layer">
<div class="layer-symbol">_</div>
<span class="layer-label">Primary and Secondary Routes</span>
</div>
<!--
<div class="layer">
<div class="layer-symbol">_</div>
<span class="layer-label">Neighborhood Centers</span>
</div>
<div class="layer">
<div class="layer-symbol">_</div>
<span class="layer-label">Projects Underway</span>
</div>
-->
<a href="http://www.cityofboston.gov">
<img src="static/bostonseal.png" style="height:70px;"/>
</a>
<a href="http://www.cityofboston.gov/bikes/">
<img src="static/boston-bikes-box-logo.png" style="height:70px;"/>
</a>
<br/>
<br/>
<a href="http://www.surveymonkey.com/s/BosBikeNetwork" target="_blank">
<button id="comments" class="btn btn-primary">Comments</button>
</a>
<br/>
<a href="http://www.cityofboston.gov/bikes/BikeNetwork/" target="_blank">
<button id="readplan" class="btn btn-primary">Read the Plan</button>
</a>
</div>
</div>
<script type="text/javascript" src="static/leaflet.js"></script>
<script type="text/javascript" src="static/jquery-1.9.1.js"></script>
<script type="text/javascript" src="static/jquery-ui.js"></script>
<!--[if lte IE 9]>
<script type="text/javascript" src="static/json3.min.js"></script>
<![endif]-->
<script type="text/javascript" src="static/esri-leaflet.min.js?v=2"></script>
<script type="text/javascript" src="static/bike-map.js?v=5"></script>
<!--
Icons CC-BY
Tricycle: CC0
Training Wheels: Ribbla Team, from The Noun Project
Bicycle: Public domain
Trail-a-Bike and Cardo Bike: Boston Bikes
-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3838275-6']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>