Is plot.tip works on geo features?
I have tested:
Plot.plot({
projection: "equirectangular",
marks: [Plot.geo(world, { fill: "lightblue", tip: true })] // Nope
})
and
Plot.plot({
projection: "equirectangular",
marks: [
Plot.geo(world, { fill: "lightblue" }),
Plot.tip(world, Plot.pointer({ x: "ISO3", y: "name" })) // Nope
]
})