var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.602102822184070, 135.510163094338620], name:"cocone(ココネ)", shopImg:"https://www.refle.info/salonImg/NDYwM0AwQDYwNDk3ZWJiNWZjZGJjNjJkYjNiYWZmMTMzODEzNmM0QDkwQDQyMA%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/esthe-cocone/", shopName:"cocone(ココネ)", shopTel:"070-1367-1908", reserve:"", time:"12:00~翌3:00(受付時間11:00~翌3:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.634581200000000, 135.541355000000070], name:"りらくる 天王寺杭全店", 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/riraku-tennouzikumata/", shopName:"りらくる 天王寺杭全店", shopTel:"050-8884-4509", reserve:"", time:"9:00~24:00(最終受付23:00)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.594030200000000, 135.502665600000000], name:"Maple Tree(メイプルツリー)", 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/mapletree/", shopName:"Maple Tree(メイプルツリー)", shopTel:"06-6608-3002", reserve:"", time:"10:00~20:00(最終受付18:00)", closed:"日曜", mapDisable:"0" }, {"latlng":[34.610032333758720, 135.530237677909780], name:"みどり温泉", 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/midori-onsen/", shopName:"みどり温泉", shopTel:"06-6691-4720", reserve:"", time:"14:00~翌1:00/日9:00~翌1:00", closed:"第2・4金曜日", mapDisable:"0" }, {"latlng":[34.609069800000000, 135.518940400000020], name:"~R~(アール)", 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/nailsalon-r/", shopName:"~R~(アール)", shopTel:"080-1497-3456", reserve:"", time:"12:00~22:00(最終受付21:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.604428700000000, 135.518173800000000], name:"be...NAIL(ビーネイル)", 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/be-nail/", shopName:"be...NAIL(ビーネイル)", shopTel:"06-4981-1631", reserve:"", time:"10:00~19:30(最終受付)", closed:"毎週木曜日・祝祭日", mapDisable:"0" }, {"latlng":[34.600254200000010, 135.530325700000050], name:"ふれ愛温泉 矢田", shopImg:"https://www.refle.info/salonImg/QEBAOTBANDIw.jpeg", open:"2", icon:"/images/googlemap/close/icon_bathhouse_close.png", scaledSize : new google.maps.Size(20, 23), manage:"5", genreName:"スーパー銭湯", url:"/shop/yata-jinken/", shopName:"ふれ愛温泉 矢田", shopTel:"06-6606-4126", reserve:"", time:"6:00~24:00(朝6:00~11:00(最終受付10:30)、夜15:30~24:00(最終受付23:30))", closed:"第4火曜日(定休日以外にも、設備点検などで、臨時休業する場合があります)", mapDisable:"0" }, {"latlng":[34.597311936839950, 135.519799306745880], name:"心もからだもポッカポカ 錦温泉(にしきおんせん)", 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/nishiki-onsen/", shopName:"心もからだもポッカポカ 錦温泉(にしきおんせん)", shopTel:"066-696-0419", reserve:"", time:"15:00~翌3: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; }