embed({
width: 900,
height: 560,
padding: { top: 0, left: 0, right: 0, bottom: 0 },
data: [
{
name: "streetsVan",
url:
"https://gist.githubusercontent.com/drlynb/234c622e2f98da7c61393cbb33573bf8/raw/8e8fa5ae3dc76d94dcca3a50e3dce41b89eb7185/vanstreets.json",
format: { type: "json", feature: "vanstreets" },
transform: [
{
type: "geopath",
projection: "projection"
}
]
}
],
scales: [],
signals: [],
projections: [
{
name: "projection",
type: "mercator",
scale: 200000,
center: d3.geoCentroid(Streets)
}
],
marks: [
{
type: "path",
from: { data: "streetsVan" },
encode: {
enter: {
stroke: { value: "grey" }
},
update: {
path: { field: "path" }
}
}
}
]
})