This example, from How To Infer Topology, shows the start point of every arc in a TopoJSON file of U.S. state boundaries.
Last active
February 9, 2016 02:01
-
-
Save mbostock/6406992 to your computer and use it in GitHub Desktop.
U.S. State Mesh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.mesh { | |
fill: none; | |
stroke: #333; | |
stroke-width: .5px; | |
stroke-linejoin: round; | |
} | |
.start { | |
fill: black; | |
stroke: white; | |
} | |
</style> | |
<body> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script src="//d3js.org/topojson.v1.min.js"></script> | |
<script> | |
var width = 960, | |
height = 500; | |
var path = d3.geo.path() | |
.projection(null); | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
d3.json("us.json", function(error, us) { | |
if (error) throw error; | |
svg.append("path") | |
.datum(topojson.mesh(us)) | |
.attr("class", "mesh") | |
.attr("d", path); | |
svg.selectAll(".start") | |
.data(us.arcs) | |
.enter().append("circle") | |
.attr("class", "start") | |
.attr("transform", function(d) { return "translate(" + transform(d[0]) + ")"; }) | |
.attr("r", 2.5); | |
function transform(point) { | |
return [ | |
point[0] * us.transform.scale[0] + us.transform.translate[0], | |
point[1] * us.transform.scale[1] + us.transform.translate[1] | |
]; | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment