{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"width": 500,
"height": 300,
"layer": [
{
"data": {
"url": "https://raw.githubusercontent.com/mattijn/datasets/master/provincie_gemeente_2019_wgs84.json",
"format": {"type": "topojson", "feature": "gemeenten"}
},
"projection": {"type": "mercator"},
"mark": {"type": "geoshape"},
"encoding": {
"color": {"field": "properties.gemeente", "type": "ordinal"},
"tooltip": {"field": "properties.gemeente", "type": "ordinal"}
}
},
{
"data": {
"url": "https://raw.githubusercontent.com/mattijn/datasets/master/prov_gem_2019_wgs84.json",
"format": {"type": "topojson", "mesh": "provincies"}
},
"projection": {"type": "mercator"},
"mark": {
"type": "geoshape",
"filled": false,
"stroke": "black"
}
}
]
}