样式 highmaps mapbubbles onclick
style highmaps mapbubbles onclick
我有一张这样的地图:http://jsfiddle.net/67ex7kd7/5/
我试图让地图气泡在被选中时变成更深的粉红色。我试过像这样使用 mapbubble 状态选项:
states:{
hover: {
borderColor: '#903d50',
borderWidth: '3px',
brightness: 1,
color: '#903d50',
enabled: true
},
normal: {
animation:true
},
select: {
borderColor: '#76a01e',
borderWidth: '3px',
color: '#76a01e',
enabled: true
}
},
在 mapbubble 系列中,但我运气不好。不确定如何访问所选样式。这可能吗?
谢谢!
据我所知,只有一种方法可以通过标记的绘图选项实现您正在寻找的内容:
plotOptions: {
mapbubble: {
marker: {
fillOpacity: 1,
fillColor: "#f06586",
states: {
select: {
fillColor: '#76a01e',
lineWidth: 2,
lineColor: '#76a01e'
},
hover: {
fillColor: '#903d50',
lineWidth: 3,
lineColor: '#903d50'
},
}
}
}
},
我有一张这样的地图:http://jsfiddle.net/67ex7kd7/5/
我试图让地图气泡在被选中时变成更深的粉红色。我试过像这样使用 mapbubble 状态选项:
states:{
hover: {
borderColor: '#903d50',
borderWidth: '3px',
brightness: 1,
color: '#903d50',
enabled: true
},
normal: {
animation:true
},
select: {
borderColor: '#76a01e',
borderWidth: '3px',
color: '#76a01e',
enabled: true
}
},
在 mapbubble 系列中,但我运气不好。不确定如何访问所选样式。这可能吗?
谢谢!
据我所知,只有一种方法可以通过标记的绘图选项实现您正在寻找的内容:
plotOptions: {
mapbubble: {
marker: {
fillOpacity: 1,
fillColor: "#f06586",
states: {
select: {
fillColor: '#76a01e',
lineWidth: 2,
lineColor: '#76a01e'
},
hover: {
fillColor: '#903d50',
lineWidth: 3,
lineColor: '#903d50'
},
}
}
}
},