{
var container = d3.create("div");
var svg = container
.append("svg")
.attr("width", mapWidth)
.attr("height", mapHeight)
.style("border", "1px solid black");
svg
.append("image")
.attr("width", mapWidth)
.attr("height", mapHeight)
.attr("xlink:href", await FileAttachment("cs448b-map2.png").url());
const data = d3
.csv(
"FILE_URL_HERE",
(d) => {
return d;
}
)
.then((data) => {
});
return container.node();
}