vegalite({
width: 900,
height: 600,
data: {
url: "https://gist.githubusercontent.com/andriy-gazin/442044f2543e9c7d19d76d0c2dc8125f/raw/6a1f9b0be8cbf6c20ecda24b333ebbb315035185/world.json",
format: {
type: "topojson",
feature: "world"
}
},
projection: {
type: "equalEarth"
},
mark: {
type: "geoshape",
fill: "darkgray",
stroke: "#F0F0F0",
strokeWidth: 0.5
},
encoding: {
tooltip: {
field: "properties.name",
type: "nominal"
}
}
})