var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.707015500000000, 135.499047800000000], name:"Bodysh(ボディッシュ)NU茶屋町店", 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/bodysh-nutyayamachi/", shopName:"Bodysh(ボディッシュ)NU茶屋町店", shopTel:"06-6376-0184", reserve:"(要予約)", time:"11:00~22:40(最終受付21:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.704306700000000, 135.496028500000000], name:"Bodysh(ボディッシュ)リンクスウメダ店", 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/bodysh-links-umeda/", shopName:"Bodysh(ボディッシュ)リンクスウメダ店", shopTel:"06-6359-0184", reserve:"(要予約)", time:"11:00~22:40(最終受付21:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.702128300000000, 135.495359900000040], name:"Refresh hands JR大阪駅店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/icon_reflexology.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"リフレクソロジー", url:"/shop/refreshhands-jrosaka/", shopName:"Refresh hands JR大阪駅店", shopTel:"06-4796-4731", reserve:"", time:"10:00~21:30(最終受付21:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.705378065249690, 135.496892293254100], name:"Bodysh(ボディッシュ)阪急梅田芝田店", 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/bodysh-umeda-shibata/", shopName:"Bodysh(ボディッシュ)阪急梅田芝田店", shopTel:"06-6375-1840", reserve:"", time:"11:00~22:40(最終受付21:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.698934200000000, 135.497953900000000], name:"Bodysh(ボディッシュ)梅田本店", 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/bodysh-umeda/", shopName:"Bodysh(ボディッシュ)梅田本店", shopTel:"06-6347-1840", reserve:"(要予約)", time:"11:00~22:40(最終受付21:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.699879000000000, 135.498856600000000], name:"Bodysh(ボディッシュ)大阪駅前第4ビル店", 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/bodysh-osaka-eki4/", shopName:"Bodysh(ボディッシュ)大阪駅前第4ビル店", shopTel:"06-6343-1840", reserve:"(要予約)", time:"11:00~22:40(最終受付21:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.706315900000000, 135.500341900000000], name:"Bodysh(ボディッシュ)茶屋町店", 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/bodysh-tyayamachi/", shopName:"Bodysh(ボディッシュ)茶屋町店", shopTel:"06-6372-0184", reserve:"(要予約)", time:"11:00~22:40(最終受付21: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; }