Possible to use custom world map image for plotly scattergeo?

I want to use a custom map instead of given world map in the plot. Is it possible? If so, then how?

1 Like

It’s possible, but it would require forking and adapting https://github.com/etpinard/sane-topojson and then calling:

Plotly.newPlot('graph', [/* data */], {/* layout */ }, {topojsonURL: '/path/to/cutsom/topojson/files/'})

is it possible to do it in python?
Thank you.