我正在使用marketclusterer对象(http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/src/markerclusterer.js)在地图缩小时对一个群集中的多个标记进行分组。 现在我有一个信息框,当点击该标记簇时会显示该信息框。我正在通过这段代码来做到这一点:
google.maps.event.addDomListener(markerCluster, 'clusterclick', function (cluster) {
var content;
var markers2 = cluster.getMarkers();
for(var i=0;i<markers2.length;i++)
{
var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title: data.title,
description: data.description,
companyname: data.companyname,
logofilename: data.logofilename,
postingid: data.postingid,
jobtitle: markers2[i].jobtitle
});
var testt = markers2[i].companyname;
content += '<IMG BORDER="0" width="80" height="50" style="margin-right:5px;" ALIGN="Left" SRC='+ decodeURIComponent(markers[i].logofilename)+'>'+markers[i].companyname+'<br /> ' + '<a href='+'javascript:NewWindow('+"'"+'../JobSeeker/JobPostingApplication.aspx?PostingID='+markers[i].postingid+'&GetPosting=True'+"'"+')>' + markers[i].jobtitle+'</a><br /><br /> ';
}
infoWindow.setContent('<div style="width:210px;height:150px;">'+content+'</div>');
var latLng = cluster.getCenter();
//var myLatlng = new google.maps.LatLng(cluster.getCenter().ya, cluster.getCenter().za);
var myLatlng = new google.maps.LatLng(latLng.ob, latLng.pb);
infoWindow.setPosition(myLatlng);
infoWindow.open(map);
});
我希望用'mouseover'实现同样的功能,但我尝试了'mouseover'和“mouseover”但没有任何反应,控制台中没有显示JS错误。 当鼠标在群集上时,是否需要调用其他事件来显示信息框? 在此先感谢Laziale