viewof map = {
const map = spikeMapColombia();
d3.select(map)
.append("text")
.attr("transform", `translate(${width - 10}, ${height-70})`)
.attr("text-anchor", "end")
.style("font-size", "18pt")
.style("font-family", "sans-serif")
.call(text => text.append("tspan").attr("class", "date"))
.call(text =>
text
.append("tspan")
.attr("y", 23)
.attr("x", 0)
.style("font-style", "italic")
.style("font-size", "12pt")
.text("Twitter: @guerravis @duto_guerra")
);
return map;
}