The Voronoi layout, d3.geom.voronoi, provides clipping via the clipExtent property. If no clip extent is specified, the returned shapes cover the area [±1e6, ±1e6].
-
-
Save mbostock/4237768 to your computer and use it in GitHub Desktop.
Voronoi Clipping
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> | |
circle, | |
path { | |
stroke: #000; | |
} | |
path { | |
fill-opacity: .1; | |
} | |
path:hover { | |
fill-opacity: .2; | |
} | |
</style> | |
<body> | |
<script src="//d3js.org/d3.v3.min.js"></script> | |
<script> | |
var padding = 10, | |
width = 960, | |
height = 500; | |
var points = [ | |
[200, 200], | |
[760, 300] | |
]; | |
var voronoi = d3.geom.voronoi() | |
.clipExtent([[padding, padding], [width - padding, height - padding]]); | |
var color = d3.scale.category10(); | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
svg.selectAll("path") | |
.data(voronoi(points)) | |
.enter().append("path") | |
.style("fill", function(d, i) { return color(i); }) | |
.attr("d", function(d) { return "M" + d.join("L") + "Z"; }); | |
svg.selectAll("circle") | |
.data(points) | |
.enter().append("circle") | |
.style("fill", function(d, i) { return color(i); }) | |
.attr("transform", function(d) { return "translate(" + d + ")"; }) | |
.attr("r", 4.5); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how 2 draw d3.voronoi into google maps or baidu maps?? appreciated~