我是D3.js的新手,我想从.geojson文件创建一个地图。
如何以干净的方式过滤我的数据以包含来自我的Geojson 积分的svg圈子和来自我的Geojson LineStrings 的路径?
类似的东西:
d3.json("static/data/test.geojson", function (data) {
svg.selectAll("path")
.data(data.features)
.enter()
.append(function (d){
if (d.geometry.type == "Point") {
return "circle"
} else if (d.geometry.type == "LineString") {
return "path"
}
})
})