echarts飞机来回轨道
时间: 2023-10-02 18:07:02 浏览: 127
echarts 飞机模式迁徙图
你可以使用 ECharts 来绘制飞机来回轨道。首先,你需要创建一个地图,并在地图上添加飞机的轨迹线和飞机图标。以下是一个简单的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts 飞机来回轨道</title>
<script src="https://cdn.jsdelivr.net/npm/echarts/dist/echarts.min.js"></script>
</head>
<body>
<div id="chart" style="width: 800px; height: 600px;"></div>
<script>
// 初始化 ECharts 实例
var myChart = echarts.init(document.getElementById('chart'));
// 配置项
var option = {
bmap: {
center: [104.114129, 37.550339],
zoom: 5,
roam: true
},
series: [{
type: 'lines',
coordinateSystem: 'bmap',
polyline: true,
data: [
{
coords: [
[116.46, 39.92],
[139.46, 35.42]
],
lineStyle: {
color: 'blue'
}
}
]
}, {
type: 'lines',
coordinateSystem: 'bmap',
polyline: true,
data: [
阅读全文