{ backgroundColor: "#222", globe: { baseTexture: "https://static.gsmlg.org/dm-echarts/earth.jpg", heightTexture: "https://static.gsmlg.org/dm-echarts/bathymetry_bw_composite_4k.jpg", environment: "https://static.gsmlg.org/dm-echarts/westerlund-2.jpg", shading: "color", light: { ambient: { intensity: 1 }, main: { intensity: 1 } }, viewControl: { autoRotate: true } }, series: [ { type: "scatter3D", coordinateSystem: "globe", label: { show: true, distance: 5, formatter: "{b}" }, stack: "value", stackStrategy: "all", data: [ { name: "Beijing", value: [116.401159, 39.902798, 0] }, { name: "Guangzhou", value: [113.295827, 23.116548, 0] } ], silent: false, itemStyle: { color: "lightblue" } }, { type: "lines3D", coordinateSystem: "globe", name: "line", effect: { show: true, trailWidth: 2.718281828459045, trailLength: 2.718281828459045, trailOpacity: 0.75, trailColor: "rgb(230, 30, 60)" }, lineStyle: { width: 2.718281828459045, color: "rgb(250, 50, 50)", opacity: 0.5 }, blendMode: "lighter", data: [ [ [116.401159, 39.902798, 1], [113.295827, 23.116548, 1] ] ] } ] }