score:1

Accepted answer

thanks to @lars kotthoff i managed to find my way through using two helpful links:

  1. http://bost.ocks.org/mike/map/
  2. https://github.com/mbostock/d3/wiki/geo-paths

quote:

alternatively, you can create multiple distinct path elements:

svg.selectall("path")
    .data(features)
    .enter().append("path")
    .attr("d", d3.geo.path());

Related Query

More Query from same tag