我需要在 infowindow 中创建一个表格以显示第一个信息和第二个信息显示照片库,以及如何在事件中展开表 2 中的照片(鼠标悬停)
这是我的代码
var marker = new google.maps.Marker({
map: map,
position: new google.maps.LatLng(-8.759264,-63.906463),
icon: predio
});
var contentimage =
'<div style="width:470px;height:220px;margin:auto;float:left;" /div>' +
'<div>' +
'<img src="images/Sem título-2.png" width="440" height="190" />' +
'<a href="http://www.google.com.br" target="_blank">www.seusite.com.br/galeriadefotos</a>' +
'</div>';
var infowindow = new google.maps.InfoWindow({content: contentimage});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});