var currentInfoWindow = null; function initialize() { var myLatlng = new google.maps.LatLng(34.789174,137.388683); var Opts = { zoom: 12, 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.8353128156499,137.408823013306); //★マーカ位置 var contentString0 = 'ちくわの里'+ '

〒442-0808
愛知県豊川市豊が丘町8

9:00〜18:00
(竹輪茶屋 11:00〜14:00)
Tel:0533-85-3451
[詳細]

';  //★インフォウィンドウ記述 var infowindow0 = new google.maps.InfoWindow({ content: contentString0 }); var image0 = new google.maps.MarkerImage('../common/img/g_icon_3.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; }); //−−−−−−−−−−−spot1 −−−−−−−−−−−− var LatLng1 = new google.maps.LatLng(34.764533,137.384039); //★マーカ位置 var contentString1 = '広小路でんでん'+ '

〒440-0881
愛知県豊橋市広小路1丁目10

<営業時間>
17:00〜23:00(L.O.22:30)

Tel:0532-52-2764
[詳細]

';  //★インフォウィンドウ記述 var infowindow1 = new google.maps.InfoWindow({ content: contentString1 }); var image1 = new google.maps.MarkerImage('../common/img/g_icon_2.png' //★マーカ種類 ); var marker1 = new google.maps.Marker({  //★マーカ追加 position: LatLng1, map: map, title: "", icon: image1, }); google.maps.event.addListener(marker1, 'click', function() {  //★クリックアクション if (currentInfoWindow) { currentInfoWindow.close(); } infowindow1.open(map, marker1); currentInfoWindow = infowindow1; }); //−−−−−−−−−−−spot2 −−−−−−−−−−−− var LatLng2 = new google.maps.LatLng(34.764543,137.384139); //★マーカ位置 var contentString2 = 'でんでん(貸切宴会場)'+ '

〒440-0881
愛知県豊橋市広小路1丁目10 2F

<営業時間>
17:00~23:00(L.O.22:30)
Tel:0532-52-2764
[詳細]

';  //★インフォウィンドウ記述 var infowindow2 = new google.maps.InfoWindow({ content: contentString2 }); var image2 = new google.maps.MarkerImage('../common/img/g_icon_2.png' //★マーカ種類 ); var marker2 = new google.maps.Marker({  //★マーカ追加 position: LatLng2, map: map, title: "", icon: image2, }); google.maps.event.addListener(marker2, 'click', function() {  //★クリックアクション if (currentInfoWindow) { currentInfoWindow.close(); } infowindow2.open(map, marker2); currentInfoWindow = infowindow2; }); //−−−−−−−−−−−spot3 −−−−−−−−−−−− var LatLng3 = new google.maps.LatLng(34.762867,137.382173); //★マーカ位置 var contentString3 = 'ねりや花でん'+ '

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

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

Tel:0532-26-8180[詳細]

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