我正在试图绘制Overijssel所有火车站的轨道。 我正在尝试从“csv”文件加载数据,然后绘制路径。在我检查它时,在“Elements”标签下的Developer工具中,它显示路径数据已加载,路径未在视图模式下显示。
代码:
d3.csv("test.csv").get(function(data){
//console.log(data[1]);
var svg=d3.select("body")
.append("svg")
.attr("height","100%")
.attr("width","100%");
svg.append("path")
.attr("d",data[0].path)
.attr("class","area")
.attr("fill","steelblue")
});
The image show the browser development tool, where it can be seen that the data is loaded