var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.755409398482350, 135.497949509462300], name:"Mrs.ルアナSPA", shopImg:"https://www.refle.info/salonImg/NzY5OEAxMEA2NDExNjA1MGNkNzA0QDkwQDQyMA%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/mrs-luanaspa/", shopName:"Mrs.ルアナSPA", shopTel:"080-8348-6247", reserve:"(完全予約制)", time:"10:00~翌5:00", closed:"不定休", mapDisable:"0" }, {"latlng":[34.758086313371490, 135.498954459423400], name:"ヒルガオ", shopImg:"https://www.refle.info/salonImg/NjY0MkAxMEA2MDkzZjdlMWQyZjc1QDkwQDQyMA%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/hirugao/", shopName:"ヒルガオ", shopTel:"070-8305-1525", reserve:"(予約優先)", time:"10:00~翌3:00", closed:"不定休", mapDisable:"0" }, {"latlng":[34.755392118425410, 135.497911282174300], name:"もくきん堂", shopImg:"https://www.refle.info/salonImg/NDEyOEAwQDQ2OTBkNmUzNTE1NjBmYzhiYjZmZWNlYTYwNTYwMWVlQDkwQDQyMA%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/mkd-refle/", shopName:"もくきん堂", shopTel:"090-4494-2609", reserve:"(完全予約制)", time:"12:00~翌5:00(最終受付)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.758149842091505, 135.499079053372950], name:"4h(フォーエイチ)", shopImg:"https://www.refle.info/salonImg/NDg3M0A1QDYxN2Q4NDhmYzg5MDBAOTBANDIw.jpeg", open:"1", icon:"/images/googlemap/open/icon_massage.png", scaledSize : new google.maps.Size(30, 34.5), manage:"30", genreName:"メンズエステ", url:"/shop/4h-mensesthe/", shopName:"4h(フォーエイチ)", shopTel:"070-1789-1515", reserve:"(完全予約制)", time:"10:00~翌3:00(受付時間9:00~翌1:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.755320638903890, 135.497923922525270], name:"TAKETONBO 江坂", shopImg:"https://www.refle.info/salonImg/NzQ0OUAxMEA2Mjk4NjkyOWI0MGY5QDkwQDQyMA%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/taketonbo/", shopName:"TAKETONBO 江坂", shopTel:"090-7557-0951", reserve:"", time:"10:00~翌5:00(最終受付)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.761160598234530, 135.497077420901500], name:"CLAVIS(クラビス)", shopImg:"https://www.refle.info/salonImg/NjUzNkAxMEA1ZjczZGY5OGEwNzQ4QDkwQDQyMA%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/clavis-es/", shopName:"CLAVIS(クラビス)", shopTel:"090-9868-7123", reserve:"(完全予約制)", time:"11:00~翌2:00(受付時間10:00~23:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.757942997928500, 135.497315932488820], 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-esaka/", shopName:"Bodysh(ボディッシュ)江坂店", shopTel:"06-6388-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; }