choroplethTooltipped = vl.markGeoshape()
.data(queryResults.features)
.encode(
vl.color({field: 'properties.CASES', type: 'quantitative'}),
vl.tooltip([
{field: 'properties.NAME', title: "Name"},
{field: 'properties.CASES', title: 'Cases'},
{field: 'properties.DEATHS', title: 'Deaths'},
]),
)
.render()