最近因项目需求,需要制作一个大区的中国地图,在使用
node_modules\echarts\lib\coord\geo\fix\nanhai.js
在判断中加入自己地图的名字就行。
if (mapType === 'china' || mapType === '自己地图的名字')
function _default(mapType, regions) {
if (mapType === 'china' || mapType === '自己地图的名字') {
regions.push(new Region('南海诸岛', zrUtil.map(points, function (exterior) {
return {
type: 'polygon',
exterior: exterior
};
}), geoCoord));
}
}