var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶
var contentStr = null;
var stationList = [
{"latlng":[34.489417801190505,
135.420600820849360],
name:"cocoro(ココロ)",
shopImg:"https://www.refle.info/salonImg/NTYzOUAxMEA2NDU2NWJjMzU0YjZjQDkwQDQyMA%3D%3D.jpeg",
open:"2",
icon:"/images/googlemap/close/icon_massage_close.png",
scaledSize : new google.maps.Size(30, 34.5),
manage:"30",
genreName:"店舗マッサージ",
url:"/shop/cocoro5560/",
shopName:"cocoro(ココロ)",
shopTel:"072-590-4262",
reserve:"(完全予約制)",
time:"10:00~翌1:00(最終受付24:00)",
closed:"年中無休",
mapDisable:"0"
},
{"latlng":[34.668003971491220,
135.505784764417970],
name:"俺のエステ",
shopImg:"https://www.refle.info/salonImg/MTczMUAxMEA1ZThmNTVhZTg1NDQzQDkwQDQyMA%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/oreno-esute/",
shopName:"俺のエステ",
shopTel:"06-6213-6900",
reserve:"(予約優先)",
time:"10:00~翌5:00",
closed:"年中無休",
mapDisable:"0"
},
{"latlng":[34.699134200000000,
135.495218300000030],
name:"PANTHEON(パンテオン)西梅田店",
shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg",
open:"1",
icon:"/images/googlemap/open/icon_massage.png",
scaledSize : new google.maps.Size(20, 23),
manage:"5",
genreName:"店舗マッサージ",
url:"/shop/olivespa-umeda/",
shopName:"PANTHEON(パンテオン)西梅田店",
shopTel:"06-6344-0101",
reserve:"",
time:"13:00~翌5:00",
closed:"不定休",
mapDisable:"0"
},
{"latlng":[35.003323200000000,
135.754869600000000],
name:"京都烏丸ルポゼ",
shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg",
open:"1",
icon:"/images/googlemap/open/icon_massage.png",
scaledSize : new google.maps.Size(20, 23),
manage:"5",
genreName:"店舗マッサージ",
url:"/shop/kyoto-repose/",
shopName:"京都烏丸ルポゼ",
shopTel:"080-6205-0456",
reserve:"(完全予約制)",
time:"12:00~LAST",
closed:"年中無休",
mapDisable:"0"
},
{"latlng":[34.671251300000000,
135.496149599999970],
name:"PENTHOUSE(ペントハウス) 堀江店",
shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg",
open:"1",
icon:"/images/googlemap/open/icon_massage.png",
scaledSize : new google.maps.Size(20, 23),
manage:"5",
genreName:"店舗マッサージ",
url:"/shop/olivespa-penthouse-horie/",
shopName:"PENTHOUSE(ペントハウス) 堀江店",
shopTel:"06-6533-2121",
reserve:"",
time:"13:00~翌5:00",
closed:"不定休",
mapDisable:"0"
},
{"latlng":[34.671220700000000,
135.502490699999950],
name:"PANTHEON(パンテオン) 心斎橋店",
shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg",
open:"1",
icon:"/images/googlemap/open/icon_massage.png",
scaledSize : new google.maps.Size(20, 23),
manage:"5",
genreName:"店舗マッサージ",
url:"/shop/olivespa-shinsaibashi/",
shopName:"PANTHEON(パンテオン) 心斎橋店",
shopTel:"06-4708-1088",
reserve:"",
time:"13:00~翌5:00",
closed:"不定休",
mapDisable:"0"
},
{"latlng":[35.004618952240286,
135.764920550891470],
name:"SPA originental(スパオリジネンタル)",
shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg",
open:"2",
icon:"/images/googlemap/close/icon_massage_close.png",
scaledSize : new google.maps.Size(20, 23),
manage:"5",
genreName:"店舗マッサージ",
url:"/shop/body-laugh/",
shopName:"SPA originental(スパオリジネンタル)",
shopTel:"075-708-2266",
reserve:"(完全予約制)",
time:"11:00~22:00(最終受付)",
closed:"不定休",
mapDisable:"0"
},
{"latlng":[35.004142600000000,
135.775775999999950],
name:"PANTHEON(パンテオン)京都祇園店",
shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg",
open:"2",
icon:"/images/googlemap/close/icon_massage_close.png",
scaledSize : new google.maps.Size(20, 23),
manage:"5",
genreName:"店舗マッサージ",
url:"/shop/olivespa-kyotogion/",
shopName:"PANTHEON(パンテオン)京都祇園店",
shopTel:"075-532-1088",
reserve:"",
time:"14:00~22:30/金土14:00~翌4: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 = '';
url = ''+station.shopName+'';
}else{
imgurl = station.shopName;
url = station.shopName;
}
if(manage <= 5){
contentStr = '
'+url+'
'; contentStr += ''+genreName+'
'; contentStr += ''+url+'
'; contentStr += ''+genreName+'
'; contentStr += ''+station.time+'
'; contentStr += ''+station.closed+'
'; contentStr += ''+url+'
'; contentStr += ''+genreName+'
'; contentStr += ''+station.time+'
'; contentStr += ''+station.closed+'
'; contentStr += '