-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.html
More file actions
38 lines (26 loc) · 1.18 KB
/
map.html
File metadata and controls
38 lines (26 loc) · 1.18 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BABS Data Challenge</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="js/colors.js"></script>
<header>
<h1>Bay Area Bike Share Data Challenge</h1>
<a href="explore.html">Explore</a> <a href="index.html">Home</a>
</header>
<div class="wrapper">
<p>Subscriber rides sorted by zipcode. Bigger, redder dots are more rides.</p>
<div id="map-here"></div>
</div>
<hr />
</div>
<footer>Made with <a href="http://www.d3js.org">D3</a> and <a href="http://www.openoffice.org/">Open Office</a>. Data from the <a href="http://bayareabikeshare.com/datachallenge">Bay Area Bike Share Data Challenge</a>. ZIP code locations from <a href="http://greatdata.com">GreatData</a>. BART station locations from <a href="http://www.bart.gov">BART</a>.</a></footer>
<script src="js/zipmap.js"></script>
</body>
</html>