map = vl
.layer(
vl.markGeoshape({ fill: "rgb(204,206,186)" }).data(vl.sphere()),
vl
.markGeoshape({
fill: "rgb(235,219,181)",
stroke: "rgb(216,148,112)",
strokeWidth: 0.2
})
.data(vl.topojson(countryData).feature("countries1")),
vl.markGeoshape({ stroke: "grey", strokeWidth: 0.2 }).data(vl.graticule())
)
.width(640)
.height(320)