Closed
Description
openedon Sep 25, 2018
Noticed that the USA States map has an enormous square as one of the pieces.
Try this in Vega:
{
"$schema": "https://vega.github.io/schema/vega/v3.json",
"config": {"kibana": {"type": "map", "latitude": 40, "longitude": -97, "zoom": 4}},
"data": [
{
"name": "usastates",
"url": {"%type%": "emsfile", "name": "USA States"},
"format": {"type": "json", "property": "features"}
}
],
"marks": [
{
"type": "shape",
"from": {"data": "usastates"},
"transform": [{"type": "geoshape", "projection": "projection"}]
}
]
}
Just scroll waaay out and you'll find the giant square.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment