ECharts設置特定的地圖區(qū)域

2018-09-27 09:37 更新

geo.regions[i]   |   Object

在地圖中對特定的區(qū)域配置樣式。

例如:

regions: [{
    name: '廣東',
    itemStyle: {
        normal: {
            areaColor: 'red',
            color: 'red'
        }
    }
}]

geo 區(qū)域的顏色也可以被 map series 所控制,參見 series-map.geoIndex。

geo.regions[i].name   |   string

地圖中特定區(qū)域的名稱,例如 '廣東','浙江'。

geo.regions[i].selected   |   boolean

[ default: false ]

是否選中該特定區(qū)域。

geo.regions[i].itemStyle   |   Object

該特定區(qū)域的多邊形樣式設置。

geo.regions[i].itemStyle.normal   |   Object

在 normal 狀態(tài)下設置地圖中特定區(qū)域的多邊形樣式。

geo.regions[i].itemStyle.normal.areaColor   |   Color

地圖區(qū)域的顏色。

geo.regions[i].itemStyle.normal.color   |   Color

[ default: 自適應 ]

圖形的顏色。

顏色可以使用 RGB 表示,比如 'rgb(128, 128, 128)',如果想要加上 alpha 通道表示不透明度,可以使用 RGBA,比如 'rgba(128, 128, 128, 0.5)',也可以使用十六進制格式,比如 '#ccc'。除了純色之外顏色也支持漸變色和紋理填充。
// 線性漸變,前四個參數分別是 x0, y0, x2, y2, 范圍從 0 - 1,相當于在圖形包圍盒中的百分比,如果 globalCoord 為 `true`,則該四個值是絕對的像素位置
color: {
    type: 'linear',
    x: 0,
    y: 0,
    x2: 0,
    y2: 1,
    colorStops: [{
        offset: 0, color: 'red' // 0% 處的顏色
    }, {
        offset: 1, color: 'blue' // 100% 處的顏色
    }],
    globalCoord: false // 缺省為 false
}
// 徑向漸變,前三個參數分別是圓心 x, y 和半徑,取值同線性漸變
color: {
    type: 'radial',
    x: 0.5,
    y: 0.5,
    r: 0.5,
    colorStops: [{
        offset: 0, color: 'red' // 0% 處的顏色
    }, {
        offset: 1, color: 'blue' // 100% 處的顏色
    }],
    globalCoord: false // 缺省為 false
}
// 紋理填充
color: {
    image: imageDom, // 支持為 HTMLImageElement, HTMLCanvasElement,不支持路徑字符串
    repeat: 'repeat' // 是否平鋪, 可以是 'repeat-x', 'repeat-y', 'no-repeat'
}

geo.regions[i].itemStyle.normal.borderColor   |   Color

[ default: "#000" ]

圖形的描邊顏色。支持的顏色格式同 color,不支持回調函數。

geo.regions[i].itemStyle.normal.borderWidth   |   number

[ default: 0 ]

描邊線寬。為 0 時無描邊。

geo.regions[i].itemStyle.normal.borderType   |   string

[ default: 'solid' ]

柱條的描邊類型,默認為實線,支持 'solid', 'dashed', 'dotted'。

geo.regions[i].itemStyle.normal.shadowBlur   |   number

圖形陰影的模糊大小。該屬性配合 shadowColor,shadowOffsetX, shadowOffsetY 一起設置圖形的陰影效果。

示例:

{
    shadowColor: 'rgba(0, 0, 0, 0.5)',
    shadowBlur: 10
}

geo.regions[i].itemStyle.normal.shadowColor   |   Color

陰影顏色。支持的格式同color。

geo.regions[i].itemStyle.normal.shadowOffsetX   |   number

[ default: 0 ]

陰影水平方向上的偏移距離。

geo.regions[i].itemStyle.normal.shadowOffsetY   |   number

[ default: 0 ]

陰影垂直方向上的偏移距離。

geo.regions[i].itemStyle.normal.opacity   |   number

圖形透明度。支持從 0 到 1 的數字,為 0 時不繪制該圖形。

geo.regions[i].itemStyle.emphasis   |   Object

在 emphasis 狀態(tài)下設置地圖中特定區(qū)域的多邊形樣式。

geo.regions[i].itemStyle.emphasis.areaColor   |   Color

地圖區(qū)域的顏色。

geo.regions[i].itemStyle.emphasis.color   |   Color

[ default: 自適應 ]

圖形的顏色。

顏色可以使用 RGB 表示,比如 'rgb(128, 128, 128)',如果想要加上 alpha 通道表示不透明度,可以使用 RGBA,比如 'rgba(128, 128, 128, 0.5)',也可以使用十六進制格式,比如 '#ccc'。除了純色之外顏色也支持漸變色和紋理填充。
// 線性漸變,前四個參數分別是 x0, y0, x2, y2, 范圍從 0 - 1,相當于在圖形包圍盒中的百分比,如果 globalCoord 為 `true`,則該四個值是絕對的像素位置
color: {
    type: 'linear',
    x: 0,
    y: 0,
    x2: 0,
    y2: 1,
    colorStops: [{
        offset: 0, color: 'red' // 0% 處的顏色
    }, {
        offset: 1, color: 'blue' // 100% 處的顏色
    }],
    globalCoord: false // 缺省為 false
}
// 徑向漸變,前三個參數分別是圓心 x, y 和半徑,取值同線性漸變
color: {
    type: 'radial',
    x: 0.5,
    y: 0.5,
    r: 0.5,
    colorStops: [{
        offset: 0, color: 'red' // 0% 處的顏色
    }, {
        offset: 1, color: 'blue' // 100% 處的顏色
    }],
    globalCoord: false // 缺省為 false
}
// 紋理填充
color: {
    image: imageDom, // 支持為 HTMLImageElement, HTMLCanvasElement,不支持路徑字符串
    repeat: 'repeat' // 是否平鋪, 可以是 'repeat-x', 'repeat-y', 'no-repeat'
}

geo.regions[i].itemStyle.emphasis.borderColor   |   Color

[ default: "#000" ]

圖形的描邊顏色。支持的顏色格式同 color,不支持回調函數。

geo.regions[i].itemStyle.emphasis.borderWidth   |   number

[ default: 0 ]

描邊線寬。為 0 時無描邊。

geo.regions[i].itemStyle.emphasis.borderType   |   string

[ default: 'solid' ]

柱條的描邊類型,默認為實線,支持 'solid', 'dashed', 'dotted'。

geo.regions[i].itemStyle.emphasis.shadowBlur   |   number

圖形陰影的模糊大小。該屬性配合 shadowColor,shadowOffsetX, shadowOffsetY 一起設置圖形的陰影效果。

示例:

{
    shadowColor: 'rgba(0, 0, 0, 0.5)',
    shadowBlur: 10
}

geo.regions[i].itemStyle.emphasis.shadowColor   |   Color

陰影顏色。支持的格式同color。

geo.regions[i].itemStyle.emphasis.shadowOffsetX   |   number

[ default: 0 ]

陰影水平方向上的偏移距離。

geo.regions[i].itemStyle.emphasis.shadowOffsetY   |   number

[ default: 0 ]

陰影垂直方向上的偏移距離。

geo.regions[i].itemStyle.emphasis.opacity   |   number

圖形透明度。

支持從 0 到 1 的數字,為 0 時不繪制該圖形。
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號