我正在使用markerWithLabel作为我的个体标记和我的聚类的markerclusterer。
当我的标记的标签被选中时,它的“z-index”似乎低于聚类器,但是我无法改变这些设置。 我在地图上看到过关于不同窗格的内容,但我不知道如何做到这一点。
这是我正在处理的网站。
我做了这个例子。 更新:http://jsfiddle.net/n5npnchp/39/
function magic() //it's where the magic happens
我不知道为什么这个项目使用带标签的标记,而不是infoWindow,在这种情况下,这是最好的做法吗?
答案 0 :(得分:1)
我不知道这是否是最佳解决方案,但我更改了markerwithlabel.js文件
//this.getPanes().overlayImage.appendChild(this.labelDiv_); THIS
this.getPanes().overlayMouseTarget.appendChild(this.labelDiv_); //TO THIS
//this.getPanes().overlayImage.appendChild(this.crossDiv_); AND THIS
this.getPanes().overlayImage.appendChild(this.crossDiv_); //TO THIS

答案 1 :(得分:-1)
请检查Here
我希望这会对你有所帮助。