Skip to content

Instantly share code, notes, and snippets.

@cmpolis
cmpolis / index.html
Last active August 29, 2015 13:57 — forked from milroc/README.md
Airline Routes within the US
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
path {
fill: none;
}
#airports circle {
fill: #333333;
}
$(document).on 'page:load', () ->
return unless $('#ca-vis').length
#
margin = { top: 0, right: 60, left: 50, bottom: 100 }
width = $('.container').width() - margin.right - margin.left
height = 540 - margin.top - margin.bottom
colors = ['#8dd3c7', '#E1C368', '#bebada', '#fb8072', '#80b1d3', '#fdb462',
'#b3de69', '#fccde5', '#d9d9d9', '#bc80bd', '#ccebc5', '#ffed6f']