var currentInfoWindow = null; //最後に開いた情報ウィンドウを記憶
var contentStr = null;
var stationList = [
{"latlng":[34.987471400000000,
135.760272100000000],
name:"MEN’S TBC 京都駅前店",
shopImg:"https://www.refle.info/salonImg/MTIzNkAwQGExYzJhMmQ2N2UzNjcxN2ExM2Q2OWI2NDE3YjhlY2I0QDkwQDQyMA%3D%3D.jpeg",
open:"2",
icon:"/images/googlemap/close/icon_mbeauty.png",
scaledSize : new google.maps.Size(30, 34.5),
manage:"25",
genreName:"メンズエステティック",
url:"/shop/tbc-kyotoeki/",
shopName:"MEN’S TBC 京都駅前店",
shopTel:"0120-025236",
reserve:"(要予約)",
time:"12:00~21:00/土日10:00~20:00/祝10:00~19:00(変更の場合あり)",
closed:"不定休",
mapDisable:"0"
},
{"latlng":[35.004919691006315,
135.769081792990160],
name:"MEN’S TBC 京都河原町店",
shopImg:"https://www.refle.info/salonImg/MTIzN0AwQDRlY2YwODdjZGVmMTRiNTY3NTIyY2M0MzljZTg1YzIzQDkwQDQyMA%3D%3D.jpeg",
open:"2",
icon:"/images/googlemap/close/icon_mbeauty.png",
scaledSize : new google.maps.Size(30, 34.5),
manage:"25",
genreName:"メンズエステティック",
url:"/shop/tbc-kawaramachi/",
shopName:"MEN’S TBC 京都河原町店",
shopTel:"0120-025236",
reserve:"(要予約)",
time:"12:00~21:00/土日祝10: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 = '
';
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;
}