var currentInfoWindow = null; function initialize() { var myLatlng = new google.maps.LatLng(34.762867,137.382173); 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(34.762867,137.382173); //★マーカ位置 var contentString0 = 'ねりや花でん'+ '

〒440-0075
愛知県豊橋市花田町西宿 
豊橋駅ビル「カルミア」1階 レストラン街

<営業時間>
昼/11:00〜15:00(LO.14:00)
夜/16:00~22:00(LO.21:00)

Tel:0532-26-8180[詳細]

';  //★インフォウィンドウ記述 var infowindow0 = new google.maps.InfoWindow({ content: contentString0 }); var image0 = new google.maps.MarkerImage('../common/img/g_icon_2.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 −−−−−−−−−−−− //−−−−−−−−−−−ここまで−−−−−−−−−−−−− }