d3地图(berghaus星投影)

时间:2014-04-29 19:06:27

标签: d3.js

我试图像

那样创建一个berghaus星投影chloropeth

http://bl.ocks.org/KoGor/5685876

但我无法让antartica和austarlia合适。 有人可以指导我的方法。

svg.insert("path", ".graticule")
      .datum(topojson.feature(world, world.objects.land))
      .attr("class", "land")
      .attr("clip-path", "url(#clip)")
      .attr("d", path);

这是原始代码,我的代码是

svg.insert("g", ".graticule")
                     .attr("class", "land")
                    .selectAll("path")
                    .data(topojson.feature(world, world.objects.countries).features)
                    .enter().append("path")
                    .attr("clip-path", "url(#clip)")
                     .attr("d", path);

更改后,它显示所有扭曲的内容。 请指教

0 个答案:

没有答案