書式
GEvent.addListener(mapID, "infowindowopen", eventFunc)
			
				
説明
					情報ウィンドウを表示する時に発生するイベントです。
				
			
				
				<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
			<html xmlns="http://www.w3.org/1999/xhtml">
			 <head>
			 <script src="http://maps.google.com/maps?file=api&v=1&key=ABQIAAAAasAJryKxWJnBFVJa487d9hTHGAxTVT7IRADYa-JdYz7xQ8IQZBSthgDZdggYpQHsmm6WYtHstQFfLA" type="text/javascript"></script>
			 </head>
			 <body>
			  <div id="map" style="width: 500px; height: 400px"></div>
			  <script type="text/javascript">
			  //<![CDATA[
			   var map = new GMap(document.getElementById("map"));
			   var gpObj = new GPoint(138, 37)
			   map.centerAndZoom(gpObj, 11);
			   GEvent.addListener(map, "infowindowopen", function(){ alert("イベント発生!"); } );
			   function openIW() {
			    map.openInfoWindowHtml(gpObj, "<i>Event Test</i>");
			   }
			   //]]>
			  </script>
			  <form>
			  <input type="button" value="情報ウィンドウを表示" onClick="openIW()">
			  </form>
			 </body>
			</html>