我试图像
那样创建一个berghaus星投影chloropethhttp://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);
更改后,它显示所有扭曲的内容。 请指教