var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶 var contentStr = null; var stationList = [ {"latlng":[35.052229400000000, 135.764756700000020], name:"AlleuM(アリューム)", 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/alleum-kyoto/", shopName:"AlleuM(アリューム)", shopTel:"070-4073-7017", reserve:"(予約優先)", time:"11:00~20:00(最終受付18:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[34.994987985959696, 135.736091424536880], name:"ANEMONA(アネモナ)", 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/anemonanail/", shopName:"ANEMONA(アネモナ)", shopTel:"075-874-2098", reserve:"", time:"10:00~22:00(最終受付20:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[35.029489800000000, 135.738209200000030], name:"町屋ねいる VERSEAU(ヴェルソー)", 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/verseau/", shopName:"町屋ねいる VERSEAU(ヴェルソー)", shopTel:"075-203-9169", reserve:"(完全予約制)", time:"11:00~20:00(受付時間11:00~18:30)", closed:"月曜", mapDisable:"0" }, {"latlng":[34.964189700000000, 135.700449299999950], name:"Nail salon CoCo", 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/nailsaloncoco/", shopName:"Nail salon CoCo", shopTel:"070-6923-7803", reserve:"", time:"10:00~21:00/日祝10:00~18:00(月~土 最終受付19:00、日・祝 最終受付16:00)", closed:"不定休", mapDisable:"0" }, {"latlng":[35.010750300000000, 135.772576200000000], name:"SEPT 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/septnail-sanjyo/", shopName:"SEPT NAIL(セプトネイル)三条本店", shopTel:"075-751-9110", reserve:"", time:"10:00~21:00/土日10:00~20:00", closed:"不定休", mapDisable:"0" }, {"latlng":[35.051763321263210, 135.782585746627030], 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/thegarden-kyoto/", shopName:"ササヨアンドソーオン", shopTel:"075-724-6666", reserve:"(完全予約制)", time:"10: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; }