Skip to content

Instantly share code, notes, and snippets.

@levibrown
Created January 11, 2013 04:45
Show Gist options
  • Save levibrown/4508009 to your computer and use it in GitHub Desktop.
Save levibrown/4508009 to your computer and use it in GitHub Desktop.
us map

An inlet to tributary

{"description":"us map","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"us.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"tab":"config","display_percent":0.6144144144144144,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"hidepanel":false}
var svg = d3.select("svg");
var path = d3.geo.path();
d3.json("us.json", function(error, topology) {
svg.selectAll("path")
.data(topojson.object(topology, topology.objects.states).geometries)
.enter().append("path")
.attr("d", path);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment