我有一个将在地图上显示的分支列表。当用户单击标记时,它将打开一个详细信息窗口。但我也希望点击后更改标记图标。不确定如何去做,但这就是我所做的。
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#wrapper {
display: table;
width: 100%;
text-align: center;
}
#one,
#two,
#three {
display: table-cell;
width: 33.333%;
}
#one {
width: 200px;
height: 200px;
background: white; /*Change color to see it*/
}
#two {
background: red;
height: 200px;
}
#three {
height: 200px;
background: green;
}