var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.667365600000000, 135.501746499999970], name:"Mauna Kea(マウナケア)", 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/cocotte/", shopName:"Mauna Kea(マウナケア)", shopTel:"06-6484-5917", reserve:"", time:"11:00~22:00/土日10:00~21:00", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.664729800000000, 135.501024400000000], name:"NAILS UNIQUE ULTIMID 大阪高島屋5F店", 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/nailsunique-us-takasimaya/", shopName:"NAILS UNIQUE ULTIMID 大阪高島屋5F店", shopTel:"06-6633-1066", reserve:"", time:"10:00~20:00", closed:"元旦", mapDisable:"0" }, {"latlng":[34.668837700000000, 135.499863199999940], name:"MARCH 難波本店(マーチ)", 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/nailsalon-march-namba/", shopName:"MARCH 難波本店(マーチ)", shopTel:"06-6212-3303", reserve:"", time:"10:00~21:00/土日10:00~18:30", closed:"不定休", mapDisable:"0" }, {"latlng":[34.669296000000000, 135.503199000000000], name:"BELLE GROW 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/laveille-nail/", shopName:"BELLE GROW NAIL", shopTel:"06-6211-3100", reserve:"", time:"12:00~20:00(最終受付)", closed:"日曜", mapDisable:"0" }, {"latlng":[34.668826600000000, 135.499474400000050], name:"ネイルプルメリア 難波店", 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/nail-plumeria/", shopName:"ネイルプルメリア 難波店", shopTel:"06-6282-7785", reserve:"(予約優先)", time:"11:00~21:00", closed:"無休", mapDisable:"0" }, {"latlng":[34.668179400000000, 135.500060500000020], name:"Nail salon Luxe(ラクゼ)", 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/ns-luxe/", shopName:"Nail salon Luxe(ラクゼ)", shopTel:"06-6211-7801", reserve:"", time:"11:00~22:00(最終受付20: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; }