map = Plot.plot({
width: 960,
height: 600,
projection: "albers-usa",
marks: [
Plot.geo(nation, { fill: "#e0e0e0" }),
Plot.geo(statemesh, { stroke: "white" }),
Plot.image(milk, {
x: "long",
y: "lat",
src: "https://cdn-icons-png.flaticon.com/512/5900/5900626.png",
fill: "#f00",
height: (d) => d.price * 10
})
]
})