Skip to content

Instantly share code, notes, and snippets.

@mbostock
Forked from mbostock/.block
Last active February 9, 2016 01:21
Embed
What would you like to do?
Albers Projection
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<title>Albers Projection</title>
<style>
path {
fill: #ccc;
stroke: #fff;
}
</style>
<svg width="960" height="500"></svg>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var projection = d3.geo.albers();
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("svg");
d3.json("states.json", function(error, collection) {
if (error) throw error;
svg.selectAll("path")
.data(collection.features)
.enter().append("path")
.attr("d", path);
});
</script>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment