var map; function initialize(canvas) { //W? var latlng = new google.maps.LatLng(35.1888308, 136.9528601); //MAP? var options ={ zoom:15, center:latlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById(canvas),options); //}[J[? var marker = new google.maps.Marker({ position:latlng, map:map }); //EBhE? google.maps.event.addListener(marker, 'click', function() { var infowindow = new google.maps.InfoWindow({ content:"愛知教育大学附属名古屋中学校"+ "
"+ "愛知県名古屋市東区大幸南1-126"+ "
"+ "http://www.nj.aichi-edu.ac.jp/" }); infowindow.open(map, marker); }); //uEUTCY?X,}[J[?\ window.onresize = function() { var bounds = new google.maps.LatLngBounds(latlng); map.fitBounds(bounds); map.setZoom(15); } }