用javascript可以吗?如果你愿意用javascript的话问题就好解决了。
在图层的标记中的加入 onMouseOver="showLayer(this)"
function showLayer(theLayer){ //theLayer 参数是要传过来的图层名字
document.thelayer.style.visibility=true;
}
然后再加入 onMouseOut="hiddenLayer(this)"
function showLayer(theLayer){ //theLayer 参数是要传过来的图层名字
document.thelayer.style.visibility=false;
}