embed ({
"$schema": "https://vega.github.io/schema/vega/v5.json",
"width": 500,
"height": 300,
"autosize": "none",
"signals": [
{
"name": "selected", "value": null,
"on": [
{"events": "symbol:mouseover", "update": "datum"},
{"events": "symbol:mouseout", "update": "null"}
]
}
],
"projections": [
{
"name": "projection",
"type": "mercator",
"scale": 200000,
"center": [-120.14,49.9]
}
],
"data": {
"name": "parkingspots",
"values": pSpots2,
"format": {
"type": "json",
"feature": "testparking"
},
"transform": [
{
"type": "geopoint",
"projection": "projection",
"fields": ["LONGITUDE", "LATITUDE"]
}
],
},
"marks": [
{
"type": "circle",
"interactive": false,
"from": {"data": "parkingspots"},
"encode":
{
"enter":
{
"shape": "circle",
"size": {"value": 100},
"fill": {"value": "#639"}
}
}
}
]
})