<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
</head>
<body>
<div class="container">
<h2>Workers commuting by bike (%)</h2>
<div id="container-bike" style="position: relative; width: 500px; height: 300px;"></div>
<div class="button" data-year="1990" id="1990">1990</div>
<div class="button" data-year="2000" id="2000">2000</div>
</div>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/topojson/1.6.9/topojson.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="//datamaps.github.io/scripts/datamaps.usa.js?v=1"></script>
<script>
$(".button").click(function(e) {
$.each(modes, function(idx, mode) {
maps[mode].bubbles(getBubbles($(e.target).data()['year'], mode), getBubbleConfig())
});
});
var years = [1990, 2000]
var maps = {}
var cities = [{
name: "New York",
slug: "newYork",
latitude: 40.7127,
longitude: -74.0059
},{
name: "Los Angeles",
slug: "losAngeles",
latitude: 34.0500,
longitude: -118.2500,
},{
name: "Oakland",
slug: "oakland",
latitude: 37.8044,
longitude: -122.2708
},{
name: "Miami",
slug: "miami",
latitude: 25.7753,
longitude: -80.2089
},{
name: "Phoenix",
slug: "phoenix",
latitude: 33.4500,
longitude: -112.0667
},{
name: "Chicago",
slug: "chicago",
latitude: 41.8369,
longitude: -87.6847
}
];
var data = {
newYork: {
bike: {
1990: 0.3,
2000: 0.47
}
},
losAngeles: {
bike: {
1990: 0.59,
2000: 0.61
}
},
oakland: {
bike: {
1990: 1.10,
2000: 1.22
}
},
miami: {
bike: {
1990: 0.60,
2000: 0.55
}
},
phoenix: {
bike: {
1990: 1.09,
2000: 0.86
}
},
chicago: {
bike: {
1990: 1.09,
2000: 0.86
}
},
};
var fills = {
bike: 'BIKE',
};
var modes = ['bike']
var getBubbleConfig = function () {
return { popupTemplate: template, borderWidth: 1 }
};
var template = function(geo, data) {
return '<div class="hoverinfo">' + data.name +
': ' + data.value + '%'
}
var getBubbles = function(year, mode) {
return $.map(cities, function(city) {
return $.extend({}, city, {
radius: data[city['slug']][mode][year] * 15,
fillKey: fills[mode],
value: data[city['slug']][mode][year]
});
})
};
$.each(modes, function(idx, mode) {
var map = new Datamap({
element: document.getElementById('container-' + mode),
scope: 'usa',
geographyConfig: {
popupOnHover: false,
highlightOnHover: false
},
fills: {
defaultFill: '#ddd',
BIKE: '#4f707f',
}
});
map.bubbles(getBubbles(years[0], mode), getBubbleConfig());
maps[mode] = map;
})
</script>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |