function makeMap(type, obj = {title: true}) {
const w = obj.width || 200
const h = obj.height || 300
let color
if (obj.color) {
const recent = data[data.length - 1]
const extent = d3.extent(recent, d => +d[type])
color = obj.color(extent)
console.log(extent)
console.log(color({'nuovi_totale_casi': 10}))
} else {
color = colour(type)
}
const projection = d3
.geoAlbers()
.rotate([-12.8, 0])
.parallels([40, 50])
.fitExtent([[0, 0], [w, h]], regions)
const path = d3.geoPath().projection(projection)
const svg = d3
.create("svg")
.attr("width", w)
.attr("height", h)
.attr("viewBox", [0, 0, w, h])
.attr("class", "italy");
if (obj.title)
svg.append('text')
.text(dict[type] || type)
.attr('dy', 10)
.attr('x', w/2)
svg
.append("path")
.datum(regions)
.attr("d", path);
svg
.selectAll(".subunit")
.data(regions.features)
.enter()
.append("path")
.attr("class", function(d) {
return "subunit";
})
.attr("d", path);
const bubble = svg
.selectAll(".bubble")
.data(data[data.length - 1])
.enter()
.append('g')
.attr('class', 'bubble')
const totale_casi = bubble
.append('text')
.attr('class', 'totale_casi')
.attr("transform", function(d) {
return "translate(" + projection([d.long, d.lat]) + ")";
})
.attr('dy', 0)
.attr('fill', d => {
console.log(d)
console.log(color(d))
return color(d)
})
.text((d, i) => {
return `${d[type]}`
})
return svg.node()
}