淘先锋技术网

首页 1 2 3 4 5 6 7

针对显示某一块区域要有对应区域的js或json文件。可使用GEOJSON编辑工具:http://geojson.io

option:{
	series:{
		showLegendSymbol: false   ,// 消除地图默认红点
	}
}
//每一块区域的颜色
itemStyle: {
   normal: {
		label:{show:true},
        borderColor: 'rgba(147, 235, 248, 1)',
        borderWidth: 1,
        areaColor: {
            type: 'radial',
            x: 0.5,
            y: 0.5,
            r: 0.8,
            colorStops: [{
                offset: 0,
                color: 'rgba(175,238,238, 0)' // 0% 处的颜色
            }, {
                offset: 1,
                color: 'rgba(47,79,79, .1)' // 100% 处的颜色
            }],
            globalCoord: true // 缺省为 false
        },
        shadowColor: 'rgba(128, 217, 248, 1)',  //阴影的颜色
        shadowOffsetX: -2,
        shadowOffsetY: 2,
        shadowBlur: 10  
    },
    // 鼠标当前所在的区域块的相关设置
    emphasis: { 
        areaColor: 'blue',    //区域块的颜色
        borderWidth: 0
    }
}