我用它们的名字创建了一些多边形和一个 html 列表。当鼠标悬停在列表中的名称上时,我想更改多边形的不透明度。
...
<li><a href="#" data-poly="polyID" class="hoverPoly">City</a></a>
...
$('.hoverPoly').live('onmouseover',function(){
var polyName = $(this).attr('data-poly');
// var gmap is reference to google map
// I want find polygon with polyName
})
多边形设置为
function initialize(){
...
var poly_444555 = new google.maps.Polygon({
...
name:'polyID', // this is id for external access
})
}