1
2
3
4
5
6
7
8
9
export const create_map = (async () => {
const d3 = await import("npm:d3");
const width = 928;
const height = 1200;
const svg = d3.create("svg")
.attr("width", 500)
.attr("height", 100);
return svg;
})();