|
整个demo:https://pan.baidu.com/s/1DwiU-j9xoABluXcM5UKxAA
提取码:e4q2
效果如下:

注意要点:

替换为https://geo.datav.aliyun.com/areas_v2/bound/450200_full.json
icon的实现主要代码段:
{
name: "运输车分布",
type: 'custom',//配置显示方式为用户自定义
coordinateSystem: 'geo',
itemStyle: {
normal: {
color: '#46bee9'
}
},
renderItem: function (params, api) {//具体实现自定义图标的方法
return {
type: 'image',
style: {
image: "货车.png",
x: api.coord([
Car[params.dataIndex].value[0], Car[params.dataIndex]
.value[1]
])[0],
y: api.coord([
Car[params.dataIndex].value[0], Car[params.dataIndex]
.value[1]
])[1]
}
}
},
data: Car
}
demo中货车的坐标写死的在 car.js文件中 |