-1
Google지도에서 Infowindow가 표시되기 전에 InfoWindow의 초기 레이아웃을 조정하고 싶습니다. 특히 난에이 작업을 수행하고자하는 또는 직후이 마커를 클릭했을 때 (성공적으로) 정보창을 생성하는 코드입니다 eventLGoogle지도 - 클릭 이벤트 또는 이후에 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;
....