var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.688781407109270, 135.185878384883320], name:"LUXY 神戸三宮店(ラグジー)", shopImg:"https://www.refle.info/salonImg/NjA3NUAwQDEyMGFiZTNiNmZiN2M3NGM1YTJiOTMxNDMzNzA4OGYxQDkwQDQyMA%3D%3D.jpeg", open:"1", icon:"/images/googlemap/open/icon_massage.png", scaledSize : new google.maps.Size(30, 34.5), manage:"30", genreName:"メンズエステ", url:"/shop/luxy-spa-k/", shopName:"LUXY 神戸三宮店(ラグジー)", shopTel:"080-4948-2592", reserve:"(完全予約制)", time:"10:00~翌3:00(最終受付翌1:30)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.688795343060200, 135.185904055784930], name:"MRS.TENOR(ミセス テノール)", shopImg:"https://www.refle.info/salonImg/NTk1MUAxMEA2MTE3NzQ2MGMwMzUxQDkwQDQyMA%3D%3D.jpeg", open:"1", icon:"/images/googlemap/open/icon_massage.png", scaledSize : new google.maps.Size(30, 34.5), manage:"30", genreName:"メンズエステ", url:"/shop/mrstenor/", shopName:"MRS.TENOR(ミセス テノール)", shopTel:"080-6165-6916", reserve:"(予約優先)", time:"10:00~翌5:00(受付時間9:00~翌3:30)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.688766322330350, 135.185927032506200], name:"MAZIORA SPA(マジョーラスパ)", shopImg:"https://www.refle.info/salonImg/NzkzMUAxMEA2NWNjNTYwNDg4ZWY0QDkwQDQyMA%3D%3D.jpeg", open:"1", icon:"/images/googlemap/open/icon_massage.png", scaledSize : new google.maps.Size(30, 34.5), manage:"30", genreName:"メンズエステ", url:"/shop/majora-spa/", shopName:"MAZIORA SPA(マジョーラスパ)", shopTel:"070-2229-9458", reserve:"", time:"9:00~翌5:00", closed:"不定休", mapDisable:"0" }, {"latlng":[34.689453327914020, 135.189456774205000], name:"Mahouno Kotoba", shopImg:"https://www.refle.info/salonImg/Njg1NkAxMEA2MGFlMTU0ODE0YTUyQDkwQDQyMA%3D%3D.jpeg", open:"1", icon:"/images/googlemap/open/icon_massage.png", scaledSize : new google.maps.Size(30, 34.5), manage:"30", genreName:"メンズエステ", url:"/shop/mahouno-kotoba/", shopName:"Mahouno Kotoba", shopTel:"080-9474-1353", reserve:"(予約優先)", time:"10:00~翌5:00(最終受付)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.687855400000000, 135.191275600000040], name:"Ganesha(ガネェーシャ)", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/icon_mbeauty.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"メンズエステティック", url:"/shop/ganesha888/", shopName:"Ganesha(ガネェーシャ)", shopTel:"078-393-3099", reserve:"(完全予約制)", time:"10:00~21:00/日祝10:00~18: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; }