帮我生成一个echarts的迁徙图的json 数据为从河南,河北,北京赶往江苏
时间: 2023-04-04 11:00:35 浏览: 106
好的,我可以为您生成一个echarts的迁徙图的json数据,数据如下:
{
"tooltip": {
"trigger": "item"
},
"series": [
{
"type": "map",
"mapType": "china",
"roam": false,
"label": {
"show": true
},
"data": [
{
"name": "河南",
"value": 1
},
{
"name": "河北",
"value": 1
},
{
"name": "北京",
"value": 1
},
{
"name": "江苏",
"value": 3
}
]
},
{
"type": "lines",
"zlevel": 2,
"effect": {
"show": true,
"period": 6,
"trailLength": .7,
"color": "#fff",
"symbolSize": 3
},
"lineStyle": {
"normal": {
"color": "#a6c84c",
"width": ,
"curveness": .2
}
},
"data": [
{
"fromName": "河南",
"toName": "江苏",
"coords": [
[
113.4668,
34.6234
],
[
119.8062,
32.9208
]
]
},
{
"fromName": "河北",
"toName": "江苏",
"coords": [
[
115.0488,
39.0948
],
[
119.8062,
32.9208
]
]
},
{
"fromName": "北京",
"toName": "江苏",
"coords": [
[
116.4551,
40.2539
],
[
119.8062,
32.9208
]
]
}
]
}
]
}
希望这个数据对您有帮助。
阅读全文