vlSpec = ({
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"width": 500,
"height": 500,
"data": {
"url": "https://unpkg.com/world-atlas@1/world/110m.json",
"format": {
"type": "topojson",
"feature": "countries"
}
},
"projection": {
"type": "orthographic",
"rotate": [{"signal": "rotation"},0,0]
},
"mark": {
"type": "geoshape",
"fill": "lightgray",
"stroke": "black",
"strokeWidth": 0.5
}
})