-1
在谷歌地圖上,我想在顯示Infowindow之前調整InfoWindow的初始佈局。具體來說,我想做到這一點或只是點擊之後eventL谷歌地圖 - 修改infowindow css或單擊事件後
// on click
$(".tabs").hide();
$("#summary").show();
這是在點擊標記時(成功)創建信息窗口的代碼。我需要找到添加上面的代碼和事件的地方。
// Renders the marker on the specified map
marker.setMap(map);
// create an InfoWindow
var infoWnd = new google.maps.InfoWindow();
// add content to your InfoWindow
infoWnd.setContent('<div class="scrollFix">' + infoWindowContent);
// add listener on InfoWindow - close last infoWindow before opening new one
google.maps.event.addListener(marker, 'click', function() {
//Close active window if exists
if(activeInfoWindow != null) activeInfoWindow.close();
// Open InfoWindow
infoWnd.open(map, marker);
// Store new open InfoWindow in global variable
activeInfoWindow = infoWnd;
....