spec = ({
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"layer": [
{
"mark": { "type": "geoshape", "fill": "#e6f3ff" },
"data": { "sphere": {} }
},
{
"mark": {"type": "geoshape", "stroke": "#ffffff", "strokeWidth": 1 },
"data":{ "graticule": {} }
},
{
"mark": { "type": "geoshape", "fill": "#2a1d0c", "stroke": "#706545", "strokeWidth": 0.5 },
"data": {
"url": world,
"format": { "type": "topojson", "feature": "countries" }
}
}
],
"width": 900,
"height": 500,
"config": {
"view": { "stroke": null }
},
"params": [
{ "name": "scale", "bind": { "element": viewof scale } },
{ "name": "angle", "bind": { "element": viewof angle } }
],
"projection": {
"type": "equalEarth",
"scale": { "expr": "scale" },
"rotate": { "expr": "[angle, 0, 0]" }
}
})