Skip to content

Instantly share code, notes, and snippets.

@kouphax
Forked from jasondavies/README.md
Created October 8, 2012 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kouphax/3852082 to your computer and use it in GitHub Desktop.
Save kouphax/3852082 to your computer and use it in GitHub Desktop.
Zoom/Pan Map Example

Demonstrates using d3.behavior.zoom with a geographic projection. Based on an example by Iain Dillingham.

<!DOCTYPE html>
<style>
path {
fill: #E5F5F9;
stroke: #2CA25F;
stroke-width: 1;
}
#axes {
stroke: #BDBDBD;
stroke-width: 0.5;
}
</style>
<body>
<script src="http://d3js.org/d3.v2.min.js?2.9.6"></script>
<script>
var width = 960,
height = 500,
projection = d3.geo.mercator(),
path = d3.geo.path().projection(projection);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.call(d3.behavior.zoom()
.translate(projection.translate())
.scale(projection.scale())
.on("zoom", redraw));
var axes = svg.append("g").attr("id", "axes"),
xAxis = axes.append("line").attr("y2", height),
yAxis = axes.append("line").attr("x2", width);
d3.json("uk.json", function (json) {
svg.selectAll("path")
.data(json.features)
.enter().append("path");
redraw();
});
function redraw() {
if (d3.event) {
projection
.translate(d3.event.translate)
.scale(d3.event.scale);
}
svg.selectAll("path").attr("d", path);
var t = projection.translate();
xAxis.attr("x1", t[0]).attr("x2", t[0]);
yAxis.attr("y1", t[1]).attr("y2", t[1]);
}
</script>
Display the source blob
Display the rendered blob
Raw
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