How to use svg map files in Plotly Javascript

Hello,

I’m using the following example:
function loadMap() {
var data = [{
type:‘scattermapbox’,
lat:[‘42.05733309427062’],
lon:[‘25.596125643992668’],
mode:‘markers’,
marker: {
size:14
},
text:[‘Name name’]
}];
var layout = {
autosize: true,
hovermode:‘closest’,
mapbox: {
bearing:0,
center: {
lat:45,
lon:-73
},
pitch:0,
zoom:5
},
};
// "Plotly.setPlotConfig({
// " mapboxAccessToken: “your access token” "
// "})
"Plotly.newPlot(‘mapContainer’, data, layout);
"} loadMap();

I have donwloaded the svg map file. Where to put the link or base64 encoded svg file?

Best