Public
Edited
Mar 31
1 fork
3 stars
Insert cell
Insert cell
// patch the spec to add the signal for rotation
viewof view = embedWithSpecificVersions(vlSpec)
Insert cell
Insert cell
Insert cell
vlSpec = ({
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 500,
"height": 500,
"data": {
"url": "https://unpkg.com/world-atlas@1/world/110m.json",
"format": {
"type": "topojson",
"feature": "countries"
}
},
"params": [{
"name": "rotation",
"bind": {"element": viewof rotation}
}],
"projection": {
"type": "orthographic",
// FIXME: switch to expr
"rotate": [{"signal": "rotation"},0,0]
},
"mark": {
"type": "geoshape",
"fill": "lightgray",
"stroke": "black",
"strokeWidth": 0.5
}
})
Insert cell
Insert cell
embedWithSpecificVersions = require.alias({
"vega": "vega@5.20.0",
"vega-lite": "vega-lite@5.0.0"
})("vega-embed@7")
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more