var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.957132800000000, 135.751266799999940], name:"力の湯", shopImg:"https://www.refle.info/salonImg/NjUwQDEwQDVmMDZkNDdmNDZjOTFAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_bathhouse_close.png", scaledSize : new google.maps.Size(30, 34.5), manage:"25", genreName:"スーパー銭湯", url:"/shop/chikara-u/", shopName:"力の湯", shopTel:"075-645-4126", reserve:"", time:"10:00~22:00/金土10:00~23:00(月~木最終受付21時00分/金・土最終受付22時00分)", closed:"不定休(年2回メンテナンスの為休業します。)", mapDisable:"0" }, {"latlng":[34.933328472088405, 135.724356254631060], name:"ひじりのね", shopImg:"https://www.refle.info/salonImg/MjczNUAxMEA1ZjA2YmQ3MDAzZmNmQDkwQDQyMA%3D%3D.jpeg", open:"2", icon:"/images/googlemap/close/icon_bathhouse_close.png", scaledSize : new google.maps.Size(30, 34.5), manage:"25", genreName:"スーパー銭湯", url:"/shop/hijirinone/", shopName:"ひじりのね", shopTel:"075-925-1126", reserve:"", time:"8:00~24:00", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.941694515806810, 135.768620788954880], name:"りらくる 伏見桃山店", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_reflexology_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"リフレクソロジー", url:"/shop/riracle-fushimimomoyama/", shopName:"りらくる 伏見桃山店", shopTel:"050-8887-1074", reserve:"", time:"9:00~24:00(最終受付23:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.957375894640150, 135.764436787731480], name:"SEPT NAIL(セプトネイル)伏見店", 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/septnail-fushimi/", shopName:"SEPT NAIL(セプトネイル)伏見店", shopTel:"075-641-8839", reserve:"", time:"10:00~20:00", closed:"不定休", mapDisable:"0" }, {"latlng":[34.955944600000000, 135.770184500000030], name:"Rrelax(Rリラックス)", 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/rrelax/", shopName:"Rrelax(Rリラックス)", shopTel:"075-275-7224", reserve:"", time:"11:00~20:00(最終受付19: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; }