我有一张这样的地图:http: //jsfiddle.net/67ex7kd7/5/
我正在尝试使地图气泡在被选中时变成更深的粉红色阴影。我试过使用这样的 mapbubble states 选项:
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系列中,但我没有任何运气。不确定如何访问选定的样式。这可能吗?
谢谢!