用d3和topojson绘制地图

时间:2016-04-13 10:04:43

标签: javascript loops dictionary d3.js topojson

我试着画一张地图,感谢d3和topojson。然后我用这段代码逐个绘制每个国家:

d3.json("datamaps-0.5.0/src/js/data/world.topo.json", function(error, map) {
    console.log(map);
    for (i=0; i<map.objects.world.geometries.length; i++)
    {
    svg.append("path")
            .attr("class", "state")
        .datum(topojson.feature(map, map.objects.world.geometries[i]))
        .attr("d", path);
    }
});

虽然代码运行良好,但我正在寻找一种比循环更优雅的方式来绘制这样的地图......

1 个答案:

答案 0 :(得分:1)

一种方法是先计算数据数组,然后将其映射到d3

的路径
 var features= map.objects.world.geometries
                  .map( //.map: create a new array by applying the function below to each element of the orignal array
                        function(g) { //take the geometry
                          return topojson.feature(map, g) //and return the corresponding feature.
                        }
                      );
 svg.selectAll(".state")
    .data(features)
    .enter()
    .append("path")
    .attr("class", "state")
    .attr("d", path);

这应该与您的代码完全相同。