var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[34.733584400000000, 135.430442800000040], name:"Natural Garden あまがさきキューズモール店", 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/natural-garden-amagasaki/", shopName:"Natural Garden あまがさきキューズモール店", shopTel:"06-6439-6735", reserve:"", time:"10:00~21:00", closed:"あまがさきキューズモールに準じる", mapDisable:"0" }, {"latlng":[34.791410900000000, 135.403741299999980], 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-itami-mizuho/", shopName:"りらくる 伊丹瑞穂店", shopTel:"050-8884-4468", reserve:"", time:"10:00~24:00(最終受付23:00)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.736670800000000, 135.399661599999940], name:"Relax JR立花店", 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/relax-tachibana/", shopName:"Relax JR立花店", shopTel:"06-6417-7711", reserve:"", time:"12:00~21:00", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.720751612439900, 135.411185823942560], 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-amagasaki/", shopName:"りらくる 尼崎店", shopTel:"050-8884-4467", reserve:"", time:"9:00~24:00(最終受付23:00)", closed:"年中無休", mapDisable:"0" }, {"latlng":[34.744286000000000, 135.422442999999930], 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-higasitukaguti/", shopName:"りらくる 東塚口店", shopTel:"050-8884-4452", reserve:"", time:"9:00~翌2:30(最終受付翌1:30)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.762397400000000, 135.385066199999980], 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-mukonosato/", shopName:"りらくる 武庫の里店", shopTel:"050-8884-4456", reserve:"", time:"10:00~24:00(最終受付23: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; }