Skip to content

Instantly share code, notes, and snippets.

@yssymmt
Created October 22, 2023 07:07
Show Gist options
  • Save yssymmt/47c472b49828a66f1525a6c662b772c3 to your computer and use it in GitHub Desktop.
Save yssymmt/47c472b49828a66f1525a6c662b772c3 to your computer and use it in GitHub Desktop.
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 600,
"height": 600,
"layer": [
{
"data": {
"url": "jp_pref.l.topojson",
"format": {
"type": "topojson",
"feature": "pref"
}
},
"projection": {
"type": "mercator",
"scale": 6000,
"center": [139,35]
},
"mark": {
"type": "geoshape",
"stroke": "white",
"strokeWidth": 0.5
},
"encoding": {
"color": {
"value": "#e0e0e0"
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment