Skip to content

Instantly share code, notes, and snippets.

@d3noob
Created September 13, 2020 18:50
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 d3noob/f052595e2f92c0da677c67d5cf6f98a1 to your computer and use it in GitHub Desktop.
Save d3noob/f052595e2f92c0da677c67d5cf6f98a1 to your computer and use it in GitHub Desktop.
World Map Centered v6
license: mit

This is a simple map example centered on the Pacific.

This graph is part of the code samples for the update to the book D3 Tips and Tricks to version 6 of d3.js.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
stroke: white;
stroke-width: 0.25px;
fill: grey;
}
</style>
<body>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="https://unpkg.com/topojson@3"></script>
<script>
var width = 960,
height = 500;
var projection = d3.geoMercator()
.center([0, 5 ])
.scale(150)
.rotate([-180,0]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var path = d3.geoPath()
.projection(projection);
var g = svg.append("g");
// load and display the World
d3.json("world-110m2.json").then(function(topology) {
g.selectAll("path")
.data(topojson.feature(topology, topology.objects.countries).features)
.enter().append("path")
.attr("d", path);
});
</script>
</body>
</html>
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