var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[32.802320000000000, 130.711004700000000], name:"Nail Quick 熊本店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/shop_s_close.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"メンズネイル", url:"/shop/nailcuick-kumamoto/", shopName:"Nail Quick 熊本店", shopTel:"0120-339-919", reserve:"", time:"10:00~19:00/金土10:00~19:30", closed:"不定休", mapDisable:"0" }, {"latlng":[33.236602300000010, 131.608177699999940], name:"Nail Quick 大分店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/shop_s_close.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"メンズネイル", url:"/shop/nailcuick-ooita/", shopName:"Nail Quick 大分店", shopTel:"097-513-5811", reserve:"(要予約)", time:"10:00~20:00", closed:"不定休", mapDisable:"0" }, {"latlng":[31.589598800000000, 130.557565900000000], name:"Nail salo Grace(ネイルサロン グレース)", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/shop_s_close.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"メンズネイル", url:"/shop/nailsalon-grace/", shopName:"Nail salo Grace(ネイルサロン グレース)", shopTel:"099-227-7701", reserve:"(完全予約制)", time:"11:00~20:00(最終受付19:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[33.806123500000000, 130.567880000000060], name:"momona(モモナ)", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/shop_s_close.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"メンズネイル", url:"/shop/momona/", shopName:"momona(モモナ)", shopTel:"0940-51-7000", reserve:"(完全予約制)", time:"10:00~21:00(受付時間10:00~19:00)", closed:"水曜、研修による休暇有り", mapDisable:"0" }, {"latlng":[33.588054900000000, 130.421546100000000], name:"SWALLOTAIL(スワロウテイル)", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/shop_s_close.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"メンズネイル", url:"/shop/swallotail/", shopName:"SWALLOTAIL(スワロウテイル)", shopTel:"092-452-1708", reserve:"(要予約)", time:"10:00~21:00", closed:"不定休", mapDisable:"0" }, {"latlng":[33.589810000000000, 130.420431499999950], name:"Nail Quick 東急ハンズ博多店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/shop_s_close.png", scaledSize : new google.maps.Size(10, 10), manage:"5", genreName:"メンズネイル", url:"/shop/nailcuick-hakata/", shopName:"Nail Quick 東急ハンズ博多店", shopTel:"092-413-5660", reserve:"(要予約)", time:"10:00~21: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; }