var map = new GMap2(document.getElementById("map")); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); map.setCenter(new GLatLng(37.4419, -122.1419), 13); // Our info window content var infoTabs = [ new GInfoWindowTab("Tab #1", "This is tab #1 content"), new GInfoWindowTab("Tab #2", "This is tab #2 content") ]; // Place a marker in the center of the map and open the info window // automatically var marker = new GMarker(map.getCenter()); GEvent.addListener(marker, "click", function() { marker.openInfoWindowTabsHtml(infoTabs); }); map.addOverlay(marker); marker.openInfoWindowTabsHtml(infoTabs);
API 버전2는 멀티말풍선을 지원하는 openInfoWindowTabs()와 GInfoWindowTab 클래스를 포함한다. 이 예제는 마커위에 멀티말풍선을 보여주는 코드이다.
형식
GInfoWindowTab(label, content)
openInfoWindowTabs(tabs, opts?)
예제보기