chart = {
const panAndZoom = vl.selectInterval("grid");
const deps = vl
.markGeoshape({ filled: false, stroke: "#333", strokeWidth: 0.2 })
.data(vl.topojson(mapData).feature("MGN_AMN_DPTOS"));
const muns = vl
.markGeoshape({ filled: false, stroke: "#ccc", strokeWidth: 0.2 })
.data(vl.topojson(mapData).feature("MGN_AMN_MPIOS"));
const dots = vl
.markPoint({ tooltip: true, shape: "wedge", filled: true, opacity: 0.9 })
.encode(
vl.latitude().fieldQ("properties.LATITUD").title("Lat"),
vl.longitude().fieldQ("properties.LONGITUD").title("Long"),
vl.detail().fieldN("properties.MPIO_CNMBR").title("City"),
vl.size()
.fieldQ("properties.STP27_PERS")
.title("Población")
.scale({ range: [0, 20000] })
.legend({ format: ".2s" }),
)
.data(mapData.objects.MGN_AMN_MPIOS.geometries);
return vl
.layer(muns, deps, dots)
.project(
vl.projection("azimuthalEqualArea").rotate([74 + 30 / 60, -38 - 50 / 60])
)
.width(width * .7)
.height(height)
.render();
}