var currentInfoWindow = null; function initialize() { var myLatlng = new google.maps.LatLng(35.168564,136.884389); var Opts = { zoom: 17, center: myLatlng, navigationControl:true, mapTypeId: google.maps.MapTypeId.ROADMAP, disableDoubleClickZoom: true, scrollwheel: true, draggable: true, scaleControl : true, keyboardShortcuts: true }; map = new google.maps.Map(document.getElementById("gmap"), Opts); //−−−−−−−−−−−spot0 −−−−−−−−−−−− var LatLng0 = new google.maps.LatLng(35.168564,136.884389); //★マーカ位置 var contentString0 = 'ヤマサちくわ 名鉄百貨店・ヤマサちくわ海工房'+ '

〒450-8505
愛知県名古屋市中村区名駅1-2-1
名鉄百貨店本店 メンズ館地下1階フレッシュステーション
10:00〜20:00  
Tel:052-585-1703

';  //★インフォウィンドウ記述 var infowindow0 = new google.maps.InfoWindow({ content: contentString0 }); var image0 = new google.maps.MarkerImage('../common/img/g_icon_1.png' //★マーカ種類 ); var marker0 = new google.maps.Marker({  //★マーカ追加 position: LatLng0, map: map, title: "", icon: image0, }); google.maps.event.addListener(marker0, 'click', function() {  //★クリックアクション if (currentInfoWindow) { currentInfoWindow.close(); } infowindow0.open(map, marker0); currentInfoWindow = infowindow0; }); //−−−−−−−−−−−spot −−−−−−−−−−−− //−−−−−−−−−−−ここまで−−−−−−−−−−−−− }