{
const myDiv = html`<div style="width:800px;height:550px;"></div>`;
const OrlandoLatLon = [28.5383, -81.3792];
const DelhiLocation = [28.7041, 77.1025];
const data = [
{
type: 'scattergeo',
lat: [OrlandoLatLon[0], DelhiLocation[0]],
lon: [OrlandoLatLon[1], DelhiLocation[1]],
mode: "lines+markers",
marker: {
size: 5,
color: 'black'
},
line: {
width: 2,
color: 'brown'
}
}
];
const layout = {
title: 'Orlando to Delhi Geodesic Path',
showlegend: false,
geo: {
scope: 'world',
showland: true,
landcolor: 'rgb(217, 217, 217)',
showlakes: true,
lakecolor: 'rgb(128, 128, 255)',
subunitcolor: 'rgb(255, 255, 255)',
countrycolor: 'rgb(255, 255, 255)',
coastlinewidth: 2,
lataxis: {
range: [10, 80],
showgrid: true,
tickmode: 'linear',
dtick: 10
},
lonaxis: {
range: [-90, 90],
showgrid: true,
tickmode: 'linear',
dtick: 20
}
}
};
Plotly.newPlot(myDiv, data, { ...layout, ...mapLayout });
return myDiv;
}