var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[33.309145385364830, 130.530065373016330], name:"久留米温泉", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_bathhouse_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"スーパー銭湯", url:"/shop/kurume-onsen/", shopName:"久留米温泉", shopTel:"0942-33-4126", reserve:"", time:"10:00~翌9:00", closed:"不定休", mapDisable:"0" }, {"latlng":[33.321974100000000, 130.555564099999970], name:"りらくる 久留米東合川店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_reflexology_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"リフレクソロジー", url:"/shop/riraku-kurume-higasiaikawa/", shopName:"りらくる 久留米東合川店", shopTel:"050-8887-1003", reserve:"", time:"9:00~24:00(最終受付23:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[33.339219600000000, 130.618050100000000], 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/poka2-kitano/", shopName:"ぽっかぽかの湯", shopTel:"0942-23-1126", reserve:"", time:"24時間営業", closed:"不定休", mapDisable:"0" }, {"latlng":[33.336150800000000, 130.663635900000030], name:"笹の湯", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_bathhouse_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"スーパー銭湯", url:"/shop/sasanoyu/", shopName:"笹の湯", shopTel:"0943-73-0828", reserve:"", time:"10:30~20:00", closed:"月曜、第2日曜日", mapDisable:"0" }, {"latlng":[33.285399340675234, 130.516789806745920], name:"遊心の湯", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_bathhouse_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"スーパー銭湯", url:"/shop/yushin-yu/", shopName:"遊心の湯", shopTel:"0942-22-6026", reserve:"", time:"月12:00~翌1:00/9:00~翌1:00/日祝7:00~翌1:00(最終受付24:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[33.289203400000000, 130.529232699999970], name:"りらくる 上津バイパス店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_reflexology_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"リフレクソロジー", url:"/shop/riracle-kamitsu/", shopName:"りらくる 上津バイパス店", shopTel:"050-8884-4547", reserve:"", time:"9:00~24:00(最終受付23:00)", 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; }