vl
.spec({
mark: { type: 'geoshape' },
width: width,
height: height,
data: { values: countiesData },
transform: [
{
lookup: "id",
from: {
data: { values: waPopulation },
key: "GEOID_TIGER",
fields: ["Estimate2021"]
}
}
],
projection: { type: "mercator" },
encoding: {
color: {
field: "Estimate2021",
type: "quantitative",
scale: { scheme: "blues", count: 20 },
legend: { title: "Population (2021)" }
},
tooltip: [
{ field: "Estimate2021", title: "Population 2021" }
]
}
})
.render();