{
const width = 720;
const height = 360;
const svg = d3.create("svg").attr("viewBox", [0, 0, width, height]);
for(let i = 0; i < helloDataset.length; i++){
svg
.append("circle")
.attr("cx", (parseFloat(helloDataset[i].long)+180)* 2)
.attr("cy", (-parseFloat(helloDataset[i].lat)+90)* 2)
.attr("r", 1)
.attr("fill", "#ffffff")
.attr("stroke", "#000000")
svg
.append("text")
.attr("x", (parseFloat(helloDataset[i].long)+180)* 2)
.attr("y", (-parseFloat(helloDataset[i].lat)+90)* 2 -7)
.style("text-anchor", "middle")
.style("alignment-baseline", "middle")
.style("font-size", "10px")
.text(helloDataset[i].hello);
}
return svg.node()
}