var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.731536052089340, 135.489562593254050], name:"天然温泉 ひなたの湯", shopImg:"https://www.refle.info/salonImg/MzI0QDEwQDVmZDFlODg1OTIyNjNAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/icon_bathhouse.png", scaledSize : new google.maps.Size(30, 34.5), manage:"25", genreName:"スーパー銭湯", url:"/shop/hinatanoyu/", shopName:"天然温泉 ひなたの湯", shopTel:"06-7504-6853", reserve:"", time:"6:00~翌1:00/土8:00~翌1:00(最終受付24:00)", closed:"年中無休(メンテナンス休館有)", mapDisable:"0" }, {"latlng":[34.740571600000000, 135.516457800000000], name:"昭和湯", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/shop_s_open.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"銭湯(公衆浴場)", url:"/shop/showayu/", shopName:"昭和湯", shopTel:"06-6322-2645", reserve:"", time:"14:45~翌0:30(毎週土曜日:朝風呂7:00~9:30)", closed:"水曜", mapDisable:"0" }, {"latlng":[34.738028258520714, 135.478586366270400], name:"あるごの湯", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/icon_bathhouse.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"スーパー銭湯", url:"/shop/algo/", shopName:"あるごの湯", shopTel:"06-6335-0035", reserve:"", time:"10:00~翌2:00(最終受付翌1:00)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.735752400000000, 135.506253300000030], name:"日之出温泉(ひのでおんせん)", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/shop_s_open.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"銭湯(公衆浴場)", url:"/shop/hinode/", shopName:"日之出温泉(ひのでおんせん)", shopTel:"06-6323-4126", reserve:"", time:"15:00~24:00(日曜日のみ7:00~11:30朝風呂有)", closed:"水曜", mapDisable:"0" }, {"latlng":[34.725069700000000, 135.486538399999970], name:"ゆ~らく", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/shop_s_open.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"銭湯(公衆浴場)", url:"/shop/youraku-osaka/", shopName:"ゆ~らく", shopTel:"06-6301-4870", reserve:"", time:"15:00~24:00", closed:"木曜", mapDisable:"0" }, {"latlng":[34.721003500000000, 135.483705300000000], name:"宝湯(たからゆ)", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/shop_s_open.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"銭湯(公衆浴場)", url:"/shop/takarayu-osaka/", shopName:"宝湯(たからゆ)", shopTel:"06-6301-6716", reserve:"", time:"15:00~翌1:00", closed:"不定休", mapDisable:"0" }, {"latlng":[34.743812800000000, 135.515480000000030], name:"平和湯", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/shop_s_open.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"銭湯(公衆浴場)", url:"/shop/heiwa/", shopName:"平和湯", shopTel:"06-6322-4046", reserve:"", time:"14:30~翌0:30", closed:"水曜", mapDisable:"0" }]; function createMarker(map, i) { //マーカーを作成 station = stationList[i]; latlng = new google.maps.LatLng(station.latlng[0], station.latlng[1]); title = station.name; genreName = station.genreName; manage = station.manage; if(station.url){ imgurl = ''+station.shopName+''; url = ''+station.shopName+''; }else{ imgurl = station.shopName; url = station.shopName; } if(manage <= 5){ contentStr = '
'; contentStr += '

'+url+'

'; contentStr += '

'+genreName+'

'; contentStr += '
'; }else if(manage <= '10'){ contentStr = '
'; contentStr += '

'+url+'

'; contentStr += '
'+imgurl+'
'; contentStr += '
'; contentStr += '

'+genreName+'

'; contentStr += '

'+station.time+'

'; contentStr += '

'+station.closed+'

'; contentStr += '
'; contentStr += '
'; }else{ contentStr = '
'; contentStr += '

'+url+'

'; contentStr += '
'+imgurl+'
'; contentStr += '
'; contentStr += '

'+genreName+'

'; contentStr += '

'+station.time+'

'; contentStr += '

'+station.closed+'

'; contentStr += '
'; contentStr += '
'; } image = "image"+i; var image = { url: station.icon, scaledSize : station.scaledSize } var marker = new google.maps.Marker({ position : latlng, icon : image, map : map, title : title }); var infoWnd = new google.maps.InfoWindow({ content : contentStr }); //マーカーがクリックされたら、情報ウィンドウを表示 google.maps.event.addListener(marker, "click", function(){ if (currentInfoWindow) { currentInfoWindow.close(); } infoWnd.open(map, marker); currentInfoWindow = infoWnd; }); return marker; }