vegalite(
{
"width": 700,
"height": 500,
"title": {"text": "Walmart Stores Across States In the US", "fontSize": 25, "offset": 30},
"layer": [
{
"data": {
"values": us,
"format": { "type": "topojson", "feature": "states" }
},
"projection": {
"type": "albersUsa"
},
"mark": { "type": "geoshape", "fill": "lightgray", "stroke": "white" }
},
{
"data": {
"values": walmartByState
},
"mark": "circle",
"encoding": {
"longitude": { "field": "longitude", "type": "quantitative" },
"latitude": { "field": "latitude", "type": "quantitative" },
"size": {"field": "NUM_STORES", "type": "quantitative", scale:{ range: [10,3000]}},
"color": {"value": "rgb(158,158,225)"},
"stroke": {"value": "rgb(8,48,107)"},
}
}
]
})