中国地图
- 基于Echrets封装的中国地图
![image.png](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/0792e7dd73454ec78dd6eecfa4b7963c~tplv-k3u1fbpfcp-watermark.image?)
import { initChinaMap } from '~'
const chartMap = new Map();
const config = {
imgFillEle:'',
mapColor:'#455b7a',
hoverMapColor:'#35455d',
borderColor:'#fff',
hoverBorderColor:'#000',
fontSize: 12,
hoverFontSize: 14,
fontColor:'#eee',
hoverFontColor:'#fff',
showTooltip:true,
tooltipBorderColor:'#BBDCEC',
tooltipBorderWidth: 1,
tooltipColor: 'red',
}
const onMouseOver = (event)=>{
console.log(event);
}
const onMouseOut = (event)=>{
console.log(event);
}
const tooltipCallback = (params)=>{
return `<span style="color:${config.tooltipColor};fontSize:20px;padding:8px 12px;">${params.name} - tooltipCallback</span>`;
}
initChinaMap({ id:'shanghaiMap',chartMap,onMouseOver,onMouseOut,tooltipCallback,config })