var Base = Class.create();
Base.prototype = {
	/**
	 * コンストラクタ
	 */
	initialize: function() {},
	/**
	 * イベントリスナーを追加
	 * @param aName:String イベント名 必須
	 * @param aListener:Function イベントリスナー 必須
	 */
	addEventListener: function(aName, aListener) {
		this._checkEventContainer();
		if(this._eventContainer[aName] == null) {
			this._eventContainer[aName] = new Array();
		}
		this.removeEventListener(aName, aListener);
		this._eventContainer[aName].push(aListener);
	},
	/**
	 * イベントリスナーを削除
	 * @param aName:String イベント名 必須
	 * @param aListener:Function イベントリスナー 必須
	 */
	removeEventListener: function(aName, aListener) {
		this._checkEventContainer();
		var myListeners = this._eventContainer[aName];
		if(myListeners == undefined) return;
		for(var i = 0; i < myListeners.length; i++) {
			var myListener = myListeners[i];
			if(myListener == aListener) {
				myListeners.splice(i, 1);
				return;
			}
		}
	},
	/**
	 * イベントを通知
	 * @param aObj:Object イベントオブジェクト
	 */
	_dispatchEvent: function(aObj) {
		this._checkEventContainer();
		var myObj = aObj;
		if(!(myObj instanceof Object)) return;
		if(!myObj.type) return;
		if(!myObj.target) myObj.target = this;
		var myListeners = this._eventContainer[myObj.type];
		if(!(myListeners instanceof Array)) return;
		for(var i = 0; i < myListeners.length; i++) {
			var myListener = myListeners[i];
			if(myListener instanceof Function) {
				myListener(myObj);
			}
		}
	},
	/**
	 * イベントリスナーの格納庫
	 */
	_eventContainer: null,
	/**
	 * イベントリスナーの格納庫をチェック
	 */
	_checkEventContainer: function() {
		if(!this._eventContainer) this._eventContainer = {};
	},
	/**
	 * 空の関数
	 */
	voidFunc: function() {
	},
	/**
	 * 破棄
	 */
	_destroy: function() {
		for(var s in this) {
			if(this[s] && this[s].destroy instanceof Function) this[s].destroy();
			delete this[s];
		}
	},
	/**
	 * 破棄
	 */
	destroy: function() {
		this._destroy();
		return null;
	}
};

var markerVisit = new Image();
var markerBuy = new Image();
var markerUse = new Image();
var markerStay = new Image();
var markerShadow = new Image();
var closeBtn = new Image();

markerVisit.src = './images/mapIcon_visit.png';
markerBuy.src = './images/mapIcon_buy.png';
markerUse.src = './images/mapIcon_use.png';
markerStay.src = './images/mapIcon_stay.png';
markerShadow.src = './images/mapIcon_shadow.png';
closeBtn.src = './images/map_closeBtn.gif';

var YMap = Class.create();
YMap.prototype = Object.extend(new Base(), {
	MAP_AREA_ID: 'map',
	//Constructer
	initialize: function() {

		this.isInit = false;
        Element.setStyle(document.body, {overflow: 'hidden'});

		this.parent = $('mapContainer');
		this.setBtns();

		this.createMapArea();

		this._initHistory();
	},
	_initHistory: function(o) {
		ManagerHistory.initialize();
		ManagerHistory.addListener(this._onChangehistory.bind(this));
		if(!this._isInitHistory) {
			this._onChangehistory(ManagerHistory.getCurrentLocation());
		}
	},
	setHistory: function(s) {
		if(!s) return;
		ManagerHistory.add(s, '');
	},
	_onChangehistory: function(pHash, pData) {
		this.clearOverlays();

		var qParams = pHash.toQueryParams();
		
		this.initialType = qParams.type || '';
		if(this.initialType){
			this.initMarkers();
		}else{
			this.setMarkers('all');	
		}

		this.initialMarker = qParams.spot ? this.markers[qParams.spot] : '';
		this.initialSpot = qParams.spot ? this.spots[qParams.spot] : '';
		if(this.initialSpot && this.initialMarker) this.setInfoHtml(this.initialSpot, this.initialMarker);
		this._isInitHistory = true;
	},
	initMarkers: function() {
/*
"見る・知る1 OR 買う2 OR 使う3 OR 滞在する4"
*/
		switch(this.initialType){
		case 'a':
			cat = '1';		
			break;
		case 'b':
			cat = '2';		
			break;
		case 'c':
			cat = '3';		
			break;
		case 'd':
			cat = '4';		
			break;
		case 'e':
			cat = 'all';		
			break;

		}
		this.setMarkers(cat);
	},
	removeHash: function(hashValue) {
		if(hashValue == null || hashValue == undefined)
			return null;
		else if(hashValue == '')
			return '';
		else if(hashValue.length == 1 && hashValue.charAt(0) == '#')
			return '';
		else if(hashValue.length > 1 && hashValue.charAt(0) == '#')
			return hashValue.substring(1);
		else
			return hashValue;
	},
	setBtns: function() {
		this.visitBtn = $('visit');
		this.buyBtn = $('buy');
		this.useBtn = $('use');
		this.stayBtn = $('stay');
		this.showAllBtn = $('show-all');
		Event.observe(this.visitBtn, "click", this.onClickCatBtn.bindAsEventListener(this), false);
		Event.observe(this.buyBtn, "click", this.onClickCatBtn.bindAsEventListener(this), false);
		Event.observe(this.useBtn, "click", this.onClickCatBtn.bindAsEventListener(this), false);
		Event.observe(this.stayBtn, "click", this.onClickCatBtn.bindAsEventListener(this), false);
		Event.observe(this.showAllBtn, "click", this.onClickCatBtn.bindAsEventListener(this), false);
	},
	onClickCatBtn: function(e) {
		this.clearOverlays();
		var eLi = Event.findElement(e, 'li');
		var cat;
/*
"見る・知る1 OR 買う2 OR 使う3 OR 滞在する4"
*/

		switch(eLi){
		case this.visitBtn:
			this.cat = 'a';
			cat = '1';		
			break;
		case this.buyBtn:
			this.cat = 'b';
			cat = '2';		
			break;
		case this.useBtn:
			this.cat = 'c';
			cat = '3';		
			break;
		case this.stayBtn:
			this.cat = 'd';
			cat = '4';		
			break;
		case this.showAllBtn:
			this.cat = 'e';
			cat = 'all';		
			break;
		}
		var h = 'type=' + this.cat;
		this.setHistory(h);
		this.setMarkers(cat);
	},
	setMarkers: function(cat) {
		this.markers = {};
		this.spots = {};
		spotArr.each(function(spot){
			if(cat == 'all') {
				this.setMarker(spot);
			}else{
				if(spot.cat_id[0] == cat) this.setMarker(spot);
			}
		}.bind(this));
	},
	setMarker: function(spot) {
		if(!(spot.lat && spot.long)) return;
		var icon;
		icon = new GIcon();
/*
"見る・知る1 OR 買う2 OR 使う3 OR 滞在する4"
*/
		switch(spot.cat_id[0]){
		case '1':
			icon.image = markerVisit.src;		
			break;
		case '2':
			icon.image = markerBuy.src;		
			break;
		case '3':
			icon.image = markerUse.src;		
			break;
		case '4':
			icon.image = markerStay.src;		
			break;
		}
		icon.shadow = markerShadow.src;
		
		
		
		
		
		//////////////////////////////////////////////////////////アイコンのサイズここから
		icon.iconSize = new GSize(20, 30);
		//////////////////////////////////////////////////////////アイコンのサイズここまで
		
		
		
		
		
		
		
		
		icon.iconAnchor = new GPoint(20, 20);
		icon.infoWindowAnchor = new GPoint(10, 1);
		var GL = new GLatLng(spot.lat, spot.long);
		var marker = new GMarker(GL, {icon: icon});	
		this.markers[spot.id] = marker;
		this.spots[spot.id] = spot;
		this.map.addOverlay(marker);	
		//spot.marker = marker;
		GEvent.addListener(marker, 'click', function(e) {
			var h = 'type=' + (this.cat || '') + '&spot=' + spot.id;
			this.setHistory(h);
			this.setInfoHtml(spot, marker);
			//alert(spot.title);
			//var GL = new GLatLng(spot.lat, spot.lang);
			//this.map.setCenter(GL, 12);
		}.bind(this));
	},
	//GoogleMap表示エリアを生成
	createMapArea: function() {
        this.mapArea = document.createElement('div');
		this.resize();
		this.mapArea.id = this.MAP_AREA_ID
		this.parent.appendChild(this.mapArea);
		Event.observe(window, 'resize', function(e){
			this.resize();
		}.bindAsEventListener(this));
        this.map = new GMap2(this.mapArea);
		this.addSetting();
	},
	resize: function() {
			var winH = (window.innerHeight || document.documentElement.clientHeight);
			var winW = (window.innerWidth || document.documentElement.clientWidth);
			Element.setStyle(this.mapArea,{ width:winW -30 + 'px', height:winH - 135 -30 + 'px' });
	},
	//GoogleMapにコントロール等を追加
	addSetting: function() {
		this.map.enableContinuousZoom();
		//this.map.enableScrollWheelZoom();
		this.map.enableDoubleClickZoom();
        this.map.addControl(new GLargeMapControl());
		this.map.addControl(
			new GMapTypeControl(),
			new GControlPosition(G_ANCHOR_TOP_LEFT,
			new GSize(75, 15))
		);
        this.map.setCenter(new GLatLng(35.450946590217754, 139.63110208511353), 14);
		//GEvent.addListener(this.map, 'click', function(overlay, point) {}.bind(this));
	},
	clearOverlays: function(){
		if(!this.markers) return;
		for(var id in this.markers){
			var marker = this.markers[id];
			try{
				if(marker) this.map.removeOverlay(marker);	
			}catch(e){}
		}
		//this.map.clearOverlays();
	},
	setInfoHtml: function(spot, marker){
		var html = '<div class="mapInfo" style="width:270px;height:77px;">';
		html += '<div class="mapImg" style="float: left; width:102px; height: 76px;">';
		html += '<a href="' + spot.link + '"><img class="clearfix" src="' + spot.img + '"></a>';
		html += '</div>';
		html += '<div class="mapTxt">';
		html += '<a class="title" href="' + spot.link + '">' + spot.title + '</a><br/>';
		html += '<img class="" src="./images/map_line.gif">';
		html += '</div>';
		html += '</div>';
		marker.openInfoWindowHtml(html, new GSize(500,300));
	}
});

//Prototype.js修正
Element.remove = function(element){
	element = $(element);
	if (!element.parentNode) return null;
	element.parentNode.removeChild(element);
	return element;
};


/*
 * 履歴
 * ManagerHistory.js
 */
var ManagerHistory = {
	currentLocation: null,
	listener: null,
	ignoreLocationChange: null,
	WAIT_TIME: 200,
	currentWaitTime: 0,
	fireOnNewListener: null,
	firstLoad: null,
	ieAtomicLocationChange: null,
	initialize: function() {
		if(!Prototype.Browser.IE) return;
		this.fireOnNewListener = true;
		this.firstLoad = false;
	},
	addListener: function(callback) {
		this.listener = callback;
		if(this.fireOnNewListener == true) {
			this.changeLocation(this.currentLocation);
			this.fireOnNewListener = false;
		}
	},
	changeLocation: function(newHash) {
		this.listener.call(null, newHash);
	},
	iframeLoaded: function() {
		if(this.ignoreLocationChange == true) {
			this.ignoreLocationChange = false;
			return;
		}
		var hash = this.getIFrameHash();
		if(this.pageLoadEvent != true) {
			window.location.hash = hash;
		}
		this.changeLocation(hash);
	},
	add: function(newLocation) {
		setTimeout(function() {
			if(this.currentWaitTime > 0)
				this.currentWaitTime = this.currentWaitTime - this.WAIT_TIME;
			newLocation = this.removeHash(newLocation);
			var idCheck = $(newLocation);
			if(idCheck != undefined || idCheck != null) {
				var message = 'Exception:' + newLocation;
				throw message; 
			}
			this.ignoreLocationChange = true;
			this.ieAtomicLocationChange = true;
			this.currentLocation = newLocation;
			if(window.location.hash != newLocation)
				window.location.hash = newLocation;
			if(Prototype.Browser.IE)
				this.iframe.src = 'blank.html?' + newLocation;
			this.ieAtomicLocationChange = false;
		}.bind(this), this.currentWaitTime);
		this.currentWaitTime = this.currentWaitTime + this.WAIT_TIME;
	},
	prepForInitialize: function() {
		var initialHash = this.getCurrentLocation();
		this.currentLocation = initialHash;
		if(Prototype.Browser.IE) {

			this.iframe = document.createElement('iframe');
			Element.setStyle(this.iframe, {border: '0px', width: '1px', height: '1px', position: 'absolute', bottom: '0px', right: '0px', visibility: 'visible'});
			this.iframe.id = 'ManagerHistoryIFrame';
			this.iframe.name = 'ManagerHistoryIFrame';
			this.iframe.src = 'blank.html?' + initialHash;
			Event.observe(this.iframe, 'load', this.iframeLoaded.bindAsEventListener(this), false);
			document.body.appendChild(this.iframe);
			this.WAIT_TIME = 400;
			this.ignoreLocationChange = true;
		} else {
			this.ignoreLocationChange = false;
			this.fireOnNewListener = true;
		}
		Event.observe(window, 'load', function(){this.firstLoad = null;}.bindAsEventListener(this), false);
		setInterval(this.checkLocation.bind(this), 100);
	},
	isFirstLoad: function() {
		return (this.firstLoad == true);
	},
	getCurrentLocation: function() {
		var currentLocation = this.removeHash(window.location.hash);
		return currentLocation;
	},
	checkLocation: function() {
		if(!Prototype.Browser.IE && this.ignoreLocationChange == true) {
			this.ignoreLocationChange = false;
			return;
		}
		if(!Prototype.Browser.IE && this.ieAtomicLocationChange == true) return;
		var hash = this.getCurrentLocation();
		if(hash == this.currentLocation) return;
		this.ieAtomicLocationChange = true;
		if(Prototype.Browser.IE && this.getIFrameHash() != hash) {
			this.iframe.src = 'blank.html?' + hash;
		} else if(Prototype.Browser.IE) {
			return;
		}
		this.currentLocation = hash;
		this.ieAtomicLocationChange = false;
		this.changeLocation(hash);
	},
	getIFrameHash: function() {
		var hash = new String(this.iframe.contentWindow.location.search);
		if(hash.length == 1 && hash.charAt(0) == '?')
			hash = '';
		else if(hash.length >= 2 && hash.charAt(0) == '?')
			hash = hash.substring(1); 
		return hash;
	},
	removeHash: function(hashValue) {
		if(hashValue == null || hashValue == undefined)
			return null;
		else if(hashValue == '')
			return '';
		else if(hashValue.length == 1 && hashValue.charAt(0) == '#')
			return '';
		else if(hashValue.length > 1 && hashValue.charAt(0) == '#')
			return hashValue.substring(1);
		else
			return hashValue;
	}
};
/*
"見る・知る1 OR 買う2 OR 使う3 OR 滞在する4"
*/
var spotArr = [];


spotArr.push({
	title: "カフェ・ギーニョ",
	link: "http://creativemap.jp/spot/use/cafe-guinho.html",
	img: "/spot/images/cafe_guinho.jpg",
	lat: "35.44750170726058" || null,
	long: "139.6356551349163" || null,
	id: "239" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "日本茶専門店 茶倉 SAKURA",
	link: "http://creativemap.jp/spot/use/sakura.html",
	img: "/spot/images/sakura.jpg",
	lat: "35.439960731923264" || null,
	long: "139.64985474944115" || null,
	id: "238" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "Cafe' 小倉山",
	link: "http://creativemap.jp/spot/use/ogurayama.html",
	img: "/spot/images/ogurayama.jpg",
	lat: "35.456894707115055" || null,
	long: "139.6309357881546" || null,
	id: "237" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "サモアール馬車道店",
	link: "http://creativemap.jp/spot/use/samovar.html",
	img: "/spot/images/samovar.jpg",
	lat: "35.44844346011691" || null,
	long: "139.63665962219238" || null,
	id: "236" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "BankART Café",
	link: "http://creativemap.jp/spot/use/bankart-cafe.html",
	img: "/spot/images/bankart_cafe.jpg",
	lat: "35.45034004263297" || null,
	long: "139.64002311229706" || null,
	id: "235" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "80*80",
	link: "http://creativemap.jp/spot/use/8080.html",
	img: "/spot/images/8080.jpg",
	lat: "35.449920525926395" || null,
	long: "139.6378344297409" || null,
	id: "234" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "YCC Café×80*80",
	link: "http://creativemap.jp/spot/use/ycc-cafe.html",
	img: "/spot/images/ycc_cafe.jpg",
	lat: "35.450007925420614" || null,
	long: "139.6356698870659" || null,
	id: "233" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "よこはまばしアートピクニックTOCO",
	link: "http://creativemap.jp/spot/visit/toco.html",
	img: "/spot/images/toco.jpg",
	lat: "35.43712203052585" || null,
	long: "139.62729200720787" || null,
	id: "222" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "関内ホール",
	link: "http://creativemap.jp/spot/visit/kannaihall.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44720453933881" || null,
	long: "139.63624253869057" || null,
	id: "221" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ポルトギャラリー",
	link: "http://creativemap.jp/spot/visit/portogallery.html",
	img: "/spot/images/portogallery.jpg",
	lat: "35.43843759203988" || null,
	long: "139.6396717429161" || null,
	id: "220" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "象の鼻テラス",
	link: "http://creativemap.jp/spot/visit/zounohana.html",
	img: "/spot/images/zounohana.jpg",
	lat: "35.44947915703056" || null,
	long: "139.64312106370926" || null,
	id: "216" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "野毛Hana ＊ Hana",
	link: "http://creativemap.jp/spot/visit/cat46/hanahana.html",
	img: "/spot/images/hanahana.jpg",
	lat: "35.44893290504521" || null,
	long: "139.62995409965515" || null,
	id: "215" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "神谷商事株式会社",
	link: "http://creativemap.jp/spot/buy/kamiya.html",
	img: "/spot/images/kamiya.jpg",
	lat: "35.44148952456819" || null,
	long: "139.62469294667244" || null,
	id: "213" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "河内屋材木店",
	link: "http://creativemap.jp/spot/buy/kawachiya.html",
	img: "/spot/images/kawachiya.jpg",
	lat: "35.44110492538152" || null,
	long: "139.62520256638527" || null,
	id: "212" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "小林紙工",
	link: "http://creativemap.jp/spot/buy/kobayashishiko.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44364630527923" || null,
	long: "139.62651416659355" || null,
	id: "211" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ホステルポルトヨコハマ",
	link: "http://creativemap.jp/spot/stay/hostel-porto-yokohama.html",
	img: "/spot/images/hostel_porto_yokohama.jpg",
	lat: "35.4384686233245" || null,
	long: "139.63975220918655" || null,
	id: "203" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "BOOK EXPRESS 桜木町店",
	link: "http://creativemap.jp/spot/buy/bookexpless.html",
	img: "/spot/images/bookexpless.jpg",
	lat: "35.450672158474696" || null,
	long: "139.63135689496994" || null,
	id: "200" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "横浜本町郵便局",
	link: "http://creativemap.jp/spot/use/post-honcho.html",
	img: "/spot/images/post_honcho.jpg",
	lat: "35.448504640895734" || null,
	long: "139.6386256814003" || null,
	id: "199" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜太田町郵便局",
	link: "http://creativemap.jp/spot/use/post-ootamachi.html",
	img: "/spot/images/post_ootamachi.jpg",
	lat: "35.446645161450654" || null,
	long: "139.6396690607071" || null,
	id: "198" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜日之出町郵便局",
	link: "http://creativemap.jp/spot/use/post-hinodecho.html",
	img: "/spot/images/post_hinodecho.jpg",
	lat: "35.44566624079134" || null,
	long: "139.6281811594963" || null,
	id: "197" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "無印良品 そごう横浜店",
	link: "http://creativemap.jp/spot/buy/mujirushi.html",
	img: "/spot/images/mujirushi.jpg",
	lat: "35.4656858585921" || null,
	long: "139.62507247924805" || null,
	id: "196" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ヤマト運輸 海岸通宅急便センター",
	link: "http://creativemap.jp/spot/use/yamato-kaigan.html",
	img: "/spot/images/yamato_kaigan.jpg",
	lat: "35.44997515062141" || null,
	long: "139.63854521512985" || null,
	id: "193" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜桜木町郵便局",
	link: "http://creativemap.jp/spot/use/post-sakuragicho.html",
	img: "/spot/images/post_sakuragicho.jpg",
	lat: "35.44997515062141" || null,
	long: "139.63238149881363" || null,
	id: "192" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "象の鼻テラス",
	link: "http://creativemap.jp/spot/visit/zounohana.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.449413606988074" || null,
	long: "139.64551091194153" || null,
	id: "191" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "BankART 桜荘",
	link: "http://creativemap.jp/spot/visit/bankart/bankart-sakuraso.html",
	img: "/spot/images/bankart_sakuraso.jpg",
	lat: "35.44095283336462" || null,
	long: "139.62502419948578" || null,
	id: "190" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "東京藝術大学 新港校舎",
	link: "http://creativemap.jp/spot/visit/geidai-shinko.html",
	img: "/spot/images/geidai_shinko.jpg",
	lat: "35.45663471559402" || null,
	long: "139.64196771383286" || null,
	id: "189" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ヨコハマ・クリエイティブシティ・センター",
	link: "http://creativemap.jp/spot/visit/bankart/ycc.html",
	img: "/spot/images/ycc.jpg",
	lat: "35.45022642374091" || null,
	long: "139.63640749454498" || null,
	id: "188" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ホステルねむの木港館",
	link: "http://creativemap.jp/spot/stay/nemunoki.html",
	img: "/spot/images/nemunoki.jpg",
	lat: "35.43835236528404" || null,
	long: "139.6400485932827" || null,
	id: "187" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "Hostel Zen",
	link: "http://creativemap.jp/spot/stay/cat40/zen.html",
	img: "/spot/images/zen.jpg",
	lat: "35.43856215405922" || null,
	long: "139.63942900300026" || null,
	id: "186" || null,
	cat_id: ["4","1"],
	category: ["滞在する","見る・知る"]
});

spotArr.push({
	title: "小山湯",
	link: "http://creativemap.jp/spot/stay/ogawayu.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.437334007837215" || null,
	long: "139.64003920555115" || null,
	id: "185" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "カプセルホテルパレス",
	link: "http://creativemap.jp/spot/stay/palace.html",
	img: "/spot/images/palace.jpg",
	lat: "35.443848213693386" || null,
	long: "139.6310806274414" || null,
	id: "184" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "MANBOO！横浜西口店",
	link: "http://creativemap.jp/spot/use/manboo.html",
	img: "/spot/images/manboo.jpg",
	lat: "35.4663193786157" || null,
	long: "139.61798876523971" || null,
	id: "183" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "メディアカフェ ポパイ 横浜西口",
	link: "http://creativemap.jp/spot/use/popeye-w.html",
	img: "/spot/images/popeye_w.jpg",
	lat: "35.46355588398978" || null,
	long: "139.61792707443237" || null,
	id: "182" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "メディアカフェ ポパイ 横浜東口",
	link: "http://creativemap.jp/spot/use/popeye-e.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.463933822061136" || null,
	long: "139.62340146303177" || null,
	id: "181" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "Green Style",
	link: "http://creativemap.jp/spot/use/greenstyle.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44598308025433" || null,
	long: "139.64632362127304" || null,
	id: "180" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "日本通運横浜南支店 横浜中ペリカンセンター",
	link: "http://creativemap.jp/spot/use/nittsu-ysouth.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.4201205073344" || null,
	long: "139.67447072267532" || null,
	id: "179" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ヤマト運輸 横浜馬車道宅急便センター",
	link: "http://creativemap.jp/spot/use/yamato-bashamichi.html",
	img: "/spot/images/yamato_bashamichi.jpg",
	lat: "35.4479583822957" || null,
	long: "139.6351307630539" || null,
	id: "178" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ヤマト運輸 横浜中華街宅急便センター",
	link: "http://creativemap.jp/spot/use/yamato-chukagai.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44430272431761" || null,
	long: "139.64522391557693" || null,
	id: "177" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ヤマト運輸 横浜関内宅急便センター",
	link: "http://creativemap.jp/spot/use/yamato-kannai.html",
	img: "/spot/images/yamato_kannai.jpg",
	lat: "35.44480530519292" || null,
	long: "139.63913798332214" || null,
	id: "176" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ヤマト運輸 横浜桜木町宅急便センター",
	link: "http://creativemap.jp/spot/use/yamato-sakuragicho.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.447829464725345" || null,
	long: "139.63121205568314" || null,
	id: "175" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ヤマト運輸 横浜文化体育館前宅急便センター",
	link: "http://creativemap.jp/spot/use/yamato-bunkataiikukan.html",
	img: "/spot/images/yamato_bunkataiikukan.jpg",
	lat: "35.441595289009044" || null,
	long: "139.63608294725418" || null,
	id: "174" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜長者町郵便局",
	link: "http://creativemap.jp/spot/use/post-chojamachi.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.43865393647646" || null,
	long: "139.63635385036468" || null,
	id: "173" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜港郵便局",
	link: "http://creativemap.jp/spot/use/post-minato.html",
	img: "/spot/images/post_minato.jpg",
	lat: "35.44694888664575" || null,
	long: "139.6432176232338" || null,
	id: "172" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜市役所内郵便局",
	link: "http://creativemap.jp/spot/use/post-shichousha.html",
	img: "/spot/images/post_shichousha.jpg",
	lat: "35.44358162453697" || null,
	long: "139.63796854019165" || null,
	id: "171" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜第二合同庁舎内郵便局",
	link: "http://creativemap.jp/spot/use/post-dai2goudouchosha.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.450455846338706" || null,
	long: "139.63737845420837" || null,
	id: "170" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜中央郵便局",
	link: "http://creativemap.jp/spot/use/post-chuou.html",
	img: "/spot/images/post_chuou.jpg",
	lat: "35.46415228256416" || null,
	long: "139.6220549941063" || null,
	id: "169" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ピカソ 伊勢佐木町店",
	link: "http://creativemap.jp/spot/buy/picaso-isezaki.html",
	img: "/spot/images/picaso_isezaki.jpg",
	lat: "35.441118910825345" || null,
	long: "139.63015258312225" || null,
	id: "168" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ローソンストア100 横浜初音店",
	link: "http://creativemap.jp/spot/buy/lawsonstore100-hatsune.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.441787587660684" || null,
	long: "139.62458163499832" || null,
	id: "167" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "初音スタジオ",
	link: "http://creativemap.jp/spot/visit/hatsunestudio.html",
	img: "/spot/images/hatsunestudio.jpg",
	lat: "35.44149039864182" || null,
	long: "139.62523877620697" || null,
	id: "165" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "日ノ出スタジオ",
	link: "http://creativemap.jp/spot/visit/hinodestudio.html",
	img: "/spot/images/hinodestudio.jpg",
	lat: "35.443625327737884" || null,
	long: "139.62672472000122" || null,
	id: "164" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "黄金スタジオ",
	link: "http://creativemap.jp/spot/visit/koganestudio.html",
	img: "/spot/images/koganestudio.jpg",
	lat: "35.44075834748168" || null,
	long: "139.62463527917862" || null,
	id: "163" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "バザールコミュニティ",
	link: "http://creativemap.jp/spot/visit/koganeoffice.html",
	img: "/spot/images/koganeoffice.jpg",
	lat: "35.442827740586424" || null,
	long: "139.62601125240326" || null,
	id: "162" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "キンコーズ 関内支店",
	link: "http://creativemap.jp/spot/use/post-2.html",
	img: "/spot/images/kinkos_kannai.jpg",
	lat: "35.44946167702444" || null,
	long: "139.6381053328514" || null,
	id: "161" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "東横イン桜木町",
	link: "http://creativemap.jp/spot/stay/touyokoinn-sakuragicho.html",
	img: "/spot/images/touyokoinn_sakuragicho.jpg",
	lat: "35.44956437200593" || null,
	long: "139.63544860482216" || null,
	id: "160" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "東横イン横浜スタジアム前新館",
	link: "http://creativemap.jp/spot/stay/touyokoinn-stadium.html",
	img: "/spot/images/touyokoinn_stadium.jpg",
	lat: "35.44304844357534" || null,
	long: "139.64184299111366" || null,
	id: "159" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "放送ライブラリー",
	link: "http://creativemap.jp/spot/use/housoulibrary.html",
	img: "/spot/images/housoulibrary.jpg",
	lat: "35.44623655092671" || null,
	long: "139.6428743004799" || null,
	id: "158" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "日本新聞博物館",
	link: "http://creativemap.jp/spot/visit/mu-shinbun.html",
	img: "/spot/images/mu_shinbun.jpg",
	lat: "35.44629336320928" || null,
	long: "139.64275896549225" || null,
	id: "157" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "神奈川県庁舎",
	link: "http://creativemap.jp/spot/visit/kenchosha.html",
	img: "/spot/images/kenchosha.jpg",
	lat: "35.447499522206336" || null,
	long: "139.64235126972198" || null,
	id: "156" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "山下公園",
	link: "http://creativemap.jp/spot/visit/yamashitakouen.html",
	img: "/spot/images/yamashitakouen.jpg",
	lat: "35.44775735819763" || null,
	long: "139.64661598205566" || null,
	id: "155" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "神奈川県民ホール",
	link: "http://creativemap.jp/spot/visit/kenminholl.html",
	img: "/spot/images/kenminholl.jpg",
	lat: "35.44616225788128" || null,
	long: "139.64697539806366" || null,
	id: "154" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "オフィスデポ 横浜関内店",
	link: "http://creativemap.jp/spot/buy/officedepot.html",
	img: "/spot/images/officedepot.jpg",
	lat: "35.44677189584405" || null,
	long: "139.64365750551224" || null,
	id: "153" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "横浜市開港記念会館",
	link: "http://creativemap.jp/spot/visit/post-1.html",
	img: "/spot/images/kaikoukinenkaikan.jpg",
	lat: "35.447250425633655" || null,
	long: "139.64114427566528" || null,
	id: "152" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "横浜税関",
	link: "http://creativemap.jp/spot/visit/zeikan.html",
	img: "/spot/images/zeikan.jpg",
	lat: "35.449081485952334" || null,
	long: "139.64245319366455" || null,
	id: "151" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "大さん橋国際客船ターミナル",
	link: "http://creativemap.jp/spot/visit/oosanbashi.html",
	img: "/spot/images/oosanbashi.jpg",
	lat: "35.450637198976956" || null,
	long: "139.6469807624817" || null,
	id: "150" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "横浜赤レンガ倉庫",
	link: "http://creativemap.jp/spot/visit/akarenga.html",
	img: "/spot/images/akarenga.jpg",
	lat: "35.452184142218826" || null,
	long: "139.64229226112366" || null,
	id: "149" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "万国橋SOKO",
	link: "http://creativemap.jp/spot/visit/bankokubashi-soko.html",
	img: "/spot/images/bankokubashi_soko.jpg",
	lat: "35.45108730134932" || null,
	long: "139.6388590335846" || null,
	id: "148" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ハマチャリ 馬車道ステーション",
	link: "http://creativemap.jp/spot/use/hamachari-bashamichi.html",
	img: "/spot/images/hamachari_bashamichi.jpg",
	lat: "35.44662331067298" || null,
	long: "139.6354579925537" || null,
	id: "147" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜平和プラザホテル",
	link: "http://creativemap.jp/spot/stay/heiwaplaza.html",
	img: "/spot/images/heiwaplaza.jpg",
	lat: "35.4487624736669" || null,
	long: "139.6358509361744" || null,
	id: "146" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "ルートイン馬車道",
	link: "http://creativemap.jp/spot/stay/routeinn.html",
	img: "/spot/images/routeinn.jpg",
	lat: "35.448727513339556" || null,
	long: "139.636859446764" || null,
	id: "145" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "神奈川県立歴史博物館",
	link: "http://creativemap.jp/spot/visit/kenritu-rekishi.html",
	img: "/spot/images/kenritu_rekishi.jpg",
	lat: "35.449107706083915" || null,
	long: "139.63623046875" || null,
	id: "144" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "3COINS",
	link: "http://creativemap.jp/spot/buy/3coins.html",
	img: "/spot/images/3coins.jpg",
	lat: "35.454216098747175" || null,
	long: "139.63864713907242" || null,
	id: "143" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "リサイクルセンター （株）フジコーポレーション",
	link: "http://creativemap.jp/spot/buy/recyclesenter.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.437312154531945" || null,
	long: "139.6367172896862" || null,
	id: "141" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "BOOKOFF 横浜伊勢佐木モール店",
	link: "http://creativemap.jp/spot/buy/bookoff-isezaki.html",
	img: "/spot/images/bookoff_isezaki.jpg",
	lat: "35.444208763197075" || null,
	long: "139.63220447301865" || null,
	id: "140" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "誠文堂書店",
	link: "http://creativemap.jp/spot/buy/seibundo.html",
	img: "/spot/images/seibundo.jpg",
	lat: "35.449352426900276" || null,
	long: "139.6366783976555" || null,
	id: "139" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ケーヨーD2",
	link: "http://creativemap.jp/spot/buy/ke-yo-d2.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.4197795222251" || null,
	long: "139.65495765209198" || null,
	id: "138" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ゴールデン文具株式会社",
	link: "http://creativemap.jp/spot/buy/goldenbungu.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44968891680766" || null,
	long: "139.63104844093323" || null,
	id: "137" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ギャラリーしみず",
	link: "http://creativemap.jp/spot/buy/shimizu.html",
	img: "/spot/images/shimizu.jpg",
	lat: "35.44227707306467" || null,
	long: "139.6323573589325" || null,
	id: "136" || null,
	cat_id: ["1","2"],
	category: ["見る・知る","買う"]
});

spotArr.push({
	title: "ハヤカワ画材店",
	link: "http://creativemap.jp/spot/buy/hayakawa-gazai.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.446205959681016" || null,
	long: "139.63234663009644" || null,
	id: "135" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "三溪園",
	link: "http://creativemap.jp/spot/visit/sankeien.html",
	img: "/spot/images/sankeien.jpg",
	lat: "35.416981641185174" || null,
	long: "139.65891122817993" || null,
	id: "133" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "大通り公園",
	link: "http://creativemap.jp/spot/visit/oodoorikouen.html",
	img: "/spot/images/oodoorikouen.jpg",
	lat: "35.44299381417901" || null,
	long: "139.63576912879944" || null,
	id: "131" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "旧東横線ガード下",
	link: "http://creativemap.jp/spot/visit/touyoko-guardshita.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.454800768358126" || null,
	long: "139.627493172884" || null,
	id: "130" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ホテル・ニューグランド",
	link: "http://creativemap.jp/spot/visit/newground.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.444846822603154" || null,
	long: "139.64957177639008" || null,
	id: "127" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "そごう美術館",
	link: "http://creativemap.jp/spot/visit/cat25/mu-sogo.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.46544992572184" || null,
	long: "139.6251368522644" || null,
	id: "123" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "有限会社ワークヨコハマ 道具店",
	link: "http://creativemap.jp/spot/buy/workyokohama.html",
	img: "/spot/images/workyokohama.jpg",
	lat: "35.43860804528092" || null,
	long: "139.6363028883934" || null,
	id: "122" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "スパ・ニュージャパン",
	link: "http://creativemap.jp/spot/stay/newjapan.html",
	img: "/spot/images/newjapan.jpg",
	lat: " 35.441536288194285" || null,
	long: "139.63165998458862" || null,
	id: "120" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "横浜美術館",
	link: "http://creativemap.jp/spot/visit/mu-yokohama.html",
	img: "/spot/images/mu_yokohama.jpg",
	lat: "35.45724077861219" || null,
	long: "139.63059782981873" || null,
	id: "119" || null,
	cat_id: ["3","1"],
	category: ["使う","見る・知る"]
});

spotArr.push({
	title: "マリンタワー",
	link: "http://creativemap.jp/spot/visit/marinetower.html",
	img: "/spot/images/marinetower.jpg",
	lat: "35.44393780493298" || null,
	long: "139.6509262919426" || null,
	id: "117" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "インターネット＆漫画喫茶405",
	link: "http://creativemap.jp/spot/use/mankitsu405.html",
	img: "/spot/images/mankitsu405.jpg",
	lat: "35.44431365002219" || null,
	long: "139.62875917553902" || null,
	id: "116" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "LibertyHouse 伊勢佐木町店",
	link: "http://creativemap.jp/spot/use/libaertyhouse.html",
	img: "/spot/images/libaertyhouse.jpg",
	lat: "35.44249340718318" || null,
	long: "139.63032826781273" || null,
	id: "115" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "寿オルタナティブ・スタジオ406",
	link: "http://creativemap.jp/spot/stay/kotobuki406.html",
	img: "/spot/images/kotobuki406.jpg",
	lat: "35.43903636208866" || null,
	long: "139.6404093503952" || null,
	id: "114" || null,
	cat_id: ["4","1"],
	category: ["滞在する","見る・知る"]
});

spotArr.push({
	title: "Kogane-X Lab.",
	link: "http://creativemap.jp/spot/visit/kogane-x-lab.html",
	img: "/spot/images/kogane-xlab.jpg",
	lat: "35.44138113769728" || null,
	long: "139.62512075901031" || null,
	id: "113" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "YOKOHAMA HOSTEL VILLAGE フロントオフィス",
	link: "http://creativemap.jp/spot/stay/hayasikaikan.html",
	img: "/spot/images/hayasikaikan.jpg",
	lat: "35.43816442904207" || null,
	long: "139.63927075266838" || null,
	id: "112" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "寿オルタナティブ・レジデンス（第一浜松荘）",
	link: "http://creativemap.jp/spot/stay/hamamatsuso01.html",
	img: "/spot/images/hamamatsuso01.jpg",
	lat: "35.43851189221495" || null,
	long: "139.6396690607071" || null,
	id: "110" || null,
	cat_id: ["4","1"],
	category: ["滞在する","見る・知る"]
});

spotArr.push({
	title: "ギャルリー・パリ",
	link: "http://creativemap.jp/spot/visit/galerieparis.html",
	img: "/spot/images/galerieparis.jpg",
	lat: "35.44583012342792" || null,
	long: "139.64230835437775" || null,
	id: "109" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "横浜シネマリン",
	link: "http://creativemap.jp/spot/visit/cinemarine.html",
	img: "/spot/images/cinemarine.jpg",
	lat: "35.442006108298095" || null,
	long: "139.63078558444977" || null,
	id: "108" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "横浜ベイクォーター「ギャラリーBOX」",
	link: "http://creativemap.jp/spot/visit/bayquartergllary.html",
	img: "/spot/images/bayquartergllary.jpg",
	lat: "35.46656841615512" || null,
	long: "139.62663888931274" || null,
	id: "107" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "創造空間9001",
	link: "http://creativemap.jp/spot/visit/9001.html",
	img: "/spot/images/9001.jpg",
	lat: "35.45069837808803" || null,
	long: "139.6309170126915" || null,
	id: "106" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "高橋ビル",
	link: "http://creativemap.jp/spot/visit/takahasibuil.html",
	img: "/spot/images/takahasibuil.jpg",
	lat: "35.441177911946" || null,
	long: "139.62530583143234" || null,
	id: "105" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "大平荘スタジオ",
	link: "http://creativemap.jp/spot/visit/oohiraso.html",
	img: "/spot/images/oohiraso.jpg",
	lat: "35.44045241368123" || null,
	long: "139.623803794384" || null,
	id: "104" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ヤグチレジデンス",
	link: "http://creativemap.jp/spot/visit/yaguchi-residence.html",
	img: "/spot/images/yaguchi_residence.jpg",
	lat: "35.44046552515366" || null,
	long: "139.62380647659302" || null,
	id: "103" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "恵びす温泉",
	link: "http://creativemap.jp/spot/stay/ebisuonsen.html",
	img: "/spot/images/ebisuonsen.jpg",
	lat: "35.440067809539684" || null,
	long: "139.64531242847443" || null,
	id: "101" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "翁湯",
	link: "http://creativemap.jp/spot/stay/okinayu.html",
	img: "/spot/images/okinayu.jpg",
	lat: "35.43819764573878" || null,
	long: "139.6381402015686" || null,
	id: "100" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "弁天湯",
	link: "http://creativemap.jp/spot/stay/bentenyu.html",
	img: "/spot/images/bentenyu.jpg",
	lat: "35.44066001174403" || null,
	long: "139.63103771209717" || null,
	id: "99" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "富の湯",
	link: "http://creativemap.jp/spot/stay/tominoyu.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44800208312015" || null,
	long: "139.6211376786232" || null,
	id: "98" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "横浜みなとみらい万葉の湯",
	link: "http://creativemap.jp/spot/stay/manyo-noyu.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.45589624769998" || null,
	long: "139.6382662653923" || null,
	id: "97" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "スカイスパYOKOHAMA",
	link: "http://creativemap.jp/spot/stay/skyspa.html",
	img: "/spot/images/skyspa.jpg",
	lat: "35.46455643293049" || null,
	long: "139.62460845708847" || null,
	id: "96" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "サウナ太洋",
	link: "http://creativemap.jp/spot/stay/sauna-taiyo.html",
	img: "/spot/images/sauna_taiyo.jpg",
	lat: "35.44303533252361" || null,
	long: "139.62997555732727" || null,
	id: "95" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "ハイランドサウナ",
	link: "http://creativemap.jp/spot/stay/hiland.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44290422188872" || null,
	long: "139.6291548013687" || null,
	id: "93" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "ホテルシャトレーイン横浜",
	link: "http://creativemap.jp/spot/stay/chateletinn.html",
	img: "/spot/images/chateletinn.jpg",
	lat: "35.442357925278024" || null,
	long: "139.63728055357933" || null,
	id: "91" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "イセザキ・ワシントン",
	link: "http://creativemap.jp/spot/stay/washington.html",
	img: "/spot/images/washington.jpg",
	lat: "35.44156032556849" || null,
	long: "139.63281735777855" || null,
	id: "90" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "横浜マンダリンホテル",
	link: "http://creativemap.jp/spot/stay/mandarin.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.447696176850705" || null,
	long: "139.62701573967934" || null,
	id: "89" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "アパホテル関内",
	link: "http://creativemap.jp/spot/stay/apahotel.html",
	img: "/spot/images/apahotel.jpg",
	lat: "35.44644631915533" || null,
	long: "139.63670656085014" || null,
	id: "88" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "スーパーホテル関内",
	link: "http://creativemap.jp/spot/stay/superhotel.html",
	img: "/spot/images/superhotel.jpg",
	lat: "35.4441781711807" || null,
	long: "139.64259132742882" || null,
	id: "86" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "東横イン 横浜日本大通り駅日銀前",
	link: "http://creativemap.jp/spot/stay/touyokoinn-nihonoodouri.html",
	img: "/spot/images/touyokoinn_nihonoodouri.jpg",
	lat: "35.44639824731789" || null,
	long: "139.64023634791374" || null,
	id: "85" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "リゾートカプセル桜木町",
	link: "http://creativemap.jp/spot/stay/resortcapsule.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.448784323863784" || null,
	long: "139.63090494275093" || null,
	id: "82" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "カプセルホテル都",
	link: "http://creativemap.jp/spot/stay/cat38/miyako.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44685055847064" || null,
	long: "139.63064208626747" || null,
	id: "81" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "カプセルホテル石庭",
	link: "http://creativemap.jp/spot/stay/ishiniwa.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.445626908908935" || null,
	long: "139.6311168372631" || null,
	id: "80" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "カプセルイン・ニューシティー",
	link: "http://creativemap.jp/spot/stay/newcity.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.444857748233886" || null,
	long: "139.62992057204247" || null,
	id: "79" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "ビジネスイン・関内",
	link: "http://creativemap.jp/spot/stay/businessin.html",
	img: "/spot/images/businessin.jpg",
	lat: "35.44421313348419" || null,
	long: "139.63339671492577" || null,
	id: "78" || null,
	cat_id: ["4"],
	category: ["滞在する"]
});

spotArr.push({
	title: "ダイス伊勢佐木町店",
	link: "http://creativemap.jp/spot/use/dice.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.442777481405315" || null,
	long: "139.62996885180473" || null,
	id: "77" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "MOOPA！伊勢佐木町店",
	link: "http://creativemap.jp/spot/use/moopa.html",
	img: "/spot/images/moopa.jpg",
	lat: "35.44395747128931" || null,
	long: "139.63249549269676" || null,
	id: "75" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "CAFE JNET NEW NEW イセザキモール店",
	link: "http://creativemap.jp/spot/use/jnet.html",
	img: "/spot/images/jnet.jpg",
	lat: "35.44416724545773" || null,
	long: "139.63283881545067" || null,
	id: "74" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "まんが＆インターネットくりっぷ",
	link: "http://creativemap.jp/spot/use/kurippu.html",
	img: "/spot/images/kurippu.jpg",
	lat: "35.44219403557184" || null,
	long: "139.63766813278198" || null,
	id: "72" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "まんが喫茶＆インターネットカフェ ゲラゲラ関内店",
	link: "http://creativemap.jp/spot/use/geragera.html",
	img: "/spot/images/geragera.jpg",
	lat: "35.44218092438094" || null,
	long: "139.6376332640648" || null,
	id: "71" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "プラネット関内セルテ店",
	link: "http://creativemap.jp/spot/use/planet.html",
	img: "/spot/images/planet.jpg",
	lat: "35.444781268787715" || null,
	long: "139.63584959506988" || null,
	id: "70" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ワイプ桜木町駅前店",
	link: "http://creativemap.jp/spot/use/wipe.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44931309681925" || null,
	long: "139.6305763721466" || null,
	id: "69" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "トヨタレンタリース 元町石川町",
	link: "http://creativemap.jp/spot/use/toyota-motomatiishikawacho.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44039341202881" || null,
	long: "139.64477866888046" || null,
	id: "68" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ニッポンレンタカー 県庁前",
	link: "http://creativemap.jp/spot/use/nippon-kenchomae.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44771584228872" || null,
	long: "139.6406078338623" || null,
	id: "67" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "日産レンタカー 関内駅前",
	link: "http://creativemap.jp/spot/use/nissan-kannnai.html",
	img: "/spot/images/nissan_kannnai.jpg",
	lat: "35.44213066479601" || null,
	long: "139.63774055242538" || null,
	id: "66" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "日産レンタカー 桜木町",
	link: "http://creativemap.jp/spot/use/nissan-sakuragicho.html",
	img: "/spot/images/nissan_sakuragicho.jpg",
	lat: "35.450320377836235" || null,
	long: "139.6320140361786" || null,
	id: "65" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ハマチャリ 事務所兼販売ステーション",
	link: "http://creativemap.jp/spot/use/hamachari-jimusho.html",
	img: "/spot/images/no_image.jpg",
	lat: ":35.45605792468237" || null,
	long: "139.622363448143" || null,
	id: "64" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ハマチャリ 県民ホールステーション",
	link: "http://creativemap.jp/spot/use/cat33/hamachari-kenminhall.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44616881315277" || null,
	long: "139.64767813682556" || null,
	id: "63" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ハマチャリ 赤レンガステーション",
	link: "http://creativemap.jp/spot/use/hamachari-akarenga.html",
	img: "/spot/images/hamachari_akarenga.jpg",
	lat: "35.451524291535215" || null,
	long: "139.6418684720993" || null,
	id: "62" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ハマチャリ 日本丸ステーション",
	link: "http://creativemap.jp/spot/use/hamachari-nihonmaru.html",
	img: "/spot/images/hamachari_nihonmaru.jpg",
	lat: "35.45354752516651" || null,
	long: "139.6314775943756" || null,
	id: "60" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "MBE 関内駅前店",
	link: "http://creativemap.jp/spot/use/mbe-kannai.html",
	img: "/spot/images/mbe_kannai.jpg",
	lat: "35.44466982717896" || null,
	long: "139.6369305253029" || null,
	id: "59" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "MBE 横浜駅西口トーヨー地下街店",
	link: "http://creativemap.jp/spot/use/mbe-yokohama.html",
	img: "/spot/images/mbe_yokohama.jpg",
	lat: "35.46757548114743" || null,
	long: "139.62146759033203" || null,
	id: "58" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "キンコーズ 横浜西口支店",
	link: "http://creativemap.jp/spot/use/kinkos-ywest.html",
	img: "/spot/images/kinkos_ywest.jpg",
	lat: "35.46746625561913" || null,
	long: "139.61860835552215" || null,
	id: "57" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜県立図書館",
	link: "http://creativemap.jp/spot/use/lib-kenritsu.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.45208363551037" || null,
	long: "139.62561696767807" || null,
	id: "55" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "横浜市中央図書館",
	link: "http://creativemap.jp/spot/use/cat29/lib-chuou.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.447385899303896" || null,
	long: "139.62646186351776" || null,
	id: "54" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "スクラッチタイル",
	link: "http://creativemap.jp/spot/visit/scratchtil.html",
	img: "/spot/images/scratchtil.jpg",
	lat: "35.448058894156475" || null,
	long: "139.6438318490982" || null,
	id: "52" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "ドン・キホーテ 横浜西口店",
	link: "http://creativemap.jp/spot/buy/donkiho-te-ywest.html",
	img: "/spot/images/donkiho-te_ywest.jpg",
	lat: "35.46455643293049" || null,
	long: "139.61840718984604" || null,
	id: "51" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ドン・キホーテ 港山下店",
	link: "http://creativemap.jp/spot/buy/donkiho-te-minato.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.442397258757836" || null,
	long: "139.654059112072" || null,
	id: "50" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ドン・キホーテ 日ノ出町店",
	link: "http://creativemap.jp/spot/buy/donkiho-te-hinodecho.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44697510747214" || null,
	long: "139.62782979011536" || null,
	id: "49" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ビックカメラ パソコン館",
	link: "http://creativemap.jp/spot/buy/bigcamera-pc.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.46539968066934" || null,
	long: "139.61979925632477" || null,
	id: "48" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ビックカメラ 横浜西口店",
	link: "http://creativemap.jp/spot/buy/bigcamera-ywest.html",
	img: "/spot/images/bigcamera_ywest.jpg",
	lat: "35.46539968066934" || null,
	long: "139.61979925632477" || null,
	id: "47" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ヨドバシカメラ マルチメディア横浜",
	link: "http://creativemap.jp/spot/buy/yodobashi.html",
	img: "/spot/images/yodobashi.jpg",
	lat: "35.4675776656565" || null,
	long: "139.62059319019318" || null,
	id: "46" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ソフマップ 横浜店",
	link: "http://creativemap.jp/spot/buy/sofmap.html",
	img: "/spot/images/sofmap.jpg",
	lat: "35.464868828849134" || null,
	long: "139.61827844381332" || null,
	id: "45" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "コジマ 横浜店",
	link: "http://creativemap.jp/spot/buy/kojima.html",
	img: "/spot/images/kojima.jpg",
	lat: "35.44077801461481" || null,
	long: "139.62970733642578" || null,
	id: "44" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "石丸電気 横浜店",
	link: "http://creativemap.jp/spot/buy/ishimaru.html",
	img: "/spot/images/ishimaru.jpg",
	lat: "35.443839473079315" || null,
	long: "139.63393718004227" || null,
	id: "43" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "PCDEPOT 横浜本店",
	link: "http://creativemap.jp/spot/buy/pcdepot.html",
	img: "/spot/images/pcdepot.jpg",
	lat: "35.45888503453665" || null,
	long: "139.62617218494415" || null,
	id: "42" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "SHOP99 横浜野毛店",
	link: "http://creativemap.jp/spot/buy/shop99-noge.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44832765351537" || null,
	long: "139.6274569630623" || null,
	id: "41" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "SHOP99 横浜吉野町店",
	link: "http://creativemap.jp/spot/buy/shop99-yoshino.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.43674178116672" || null,
	long: "139.62214082479477" || null,
	id: "40" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ザ・ダイソー 横浜ジャックモール店",
	link: "http://creativemap.jp/spot/buy/daiso-jackmall.html",
	img: "/spot/images/daiso_jackmall.jpg",
	lat: "35.46046458974879" || null,
	long: "139.62939888238907" || null,
	id: "39" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "キャンドゥ100円ショップ 野毛店",
	link: "http://creativemap.jp/spot/buy/cando-noge.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44841068468055" || null,
	long: "139.62871491909027" || null,
	id: "38" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ザ・ダイソー ぴおシティー桜木町店",
	link: "http://creativemap.jp/spot/buy/daiso-sakuragicho.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44968891680766" || null,
	long: "139.63104844093323" || null,
	id: "37" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ザ・ダイソー 横浜伊勢佐木町店",
	link: "http://creativemap.jp/spot/buy/daiso-isezaki.html",
	img: "/spot/images/daiso_isezaki.jpg",
	lat: "35.44441198129658" || null,
	long: "139.63215619325638" || null,
	id: "36" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "有隣堂 伊勢佐木町本店 文具館",
	link: "http://creativemap.jp/spot/buy/yurindo-isezaki-pen.html",
	img: "/spot/images/yurindo_isezaki_pen.jpg",
	lat: "35.44430272431761" || null,
	long: "139.63353753089905" || null,
	id: "35" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "寿クリーンセンター",
	link: "http://creativemap.jp/spot/buy/kotobukicc.html",
	img: "/spot/images/kotobukicc.jpg",
	lat: "35.43809668447518" || null,
	long: "139.6379256248474" || null,
	id: "33" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "オフィスバスターズ 横浜関内店",
	link: "http://creativemap.jp/spot/buy/cat17/office-burster.html",
	img: "/spot/images/office_burster.jpg",
	lat: "35.448506825922706" || null,
	long: "139.63710755109787" || null,
	id: "32" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "アンティークガレージ 横濱バザール",
	link: "http://creativemap.jp/spot/buy/antiquegarage.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44194492257941" || null,
	long: "139.64449435472488" || null,
	id: "31" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ヴィレッジバンガード 横浜ワールドポーターズ店",
	link: "http://creativemap.jp/spot/buy/vv-wp.html",
	img: "/spot/images/vv_wp.jpg",
	lat: "35.454216098747175" || null,
	long: "139.63864713907242" || null,
	id: "30" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "TSUTAYA 横浜みなとみらい店",
	link: "http://creativemap.jp/spot/buy/tsutaya-mm.html",
	img: "/spot/images/tsutaya_mm.jpg",
	lat: "35.45904452077208" || null,
	long: "139.63049054145813" || null,
	id: "29" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "有隣堂 ランドマークプラザ店",
	link: "http://creativemap.jp/spot/buy/yurindo-landmark.html",
	img: "/spot/images/yurindo_landmark.jpg",
	lat: "35.455098782155225" || null,
	long: "139.63089287281036" || null,
	id: "28" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "有隣堂 ルミネ横浜店",
	link: "http://creativemap.jp/spot/buy/yurindo-lunine.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.465257683612144" || null,
	long: "139.62282478809357" || null,
	id: "27" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "有隣堂 伊勢佐木町本店 書籍館‎",
	link: "http://creativemap.jp/spot/buy/yurindo-isezaki-books.html",
	img: "/spot/images/yurindo_isezaki_books.jpg",
	lat: "35.44459334755425" || null,
	long: "139.63331758975983" || null,
	id: "26" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "セキチュー横浜みなとみらい店",
	link: "http://creativemap.jp/spot/buy/sekichu.html",
	img: "/spot/images/sekichu.jpg",
	lat: "35.45756325288256" || null,
	long: "139.62712168693542" || null,
	id: "24" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "島忠ホームズ新山下店",
	link: "http://creativemap.jp/spot/buy/shimachu-homes.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.4397902815462" || null,
	long: "139.66033816337585" || null,
	id: "23" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "横浜ロフト",
	link: "http://creativemap.jp/spot/buy/loft-y.html",
	img: "/spot/images/loft_y.jpg",
	lat: "35.46543681831988" || null,
	long: "139.62511539459229" || null,
	id: "22" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "世界堂横浜ルミネ店",
	link: "http://creativemap.jp/spot/buy/sekaido.html",
	img: "/spot/images/sekaido.jpg",
	lat: "35.46525768361214" || null,
	long: "139.62282478809357" || null,
	id: "21" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "石渡額縁店",
	link: "http://creativemap.jp/spot/buy/ishiwata-gakubuchi.html",
	img: "/spot/images/ishiwata_gakubuchi.jpg",
	lat: "35.438756645247885" || null,
	long: "139.64518904685974" || null,
	id: "20" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "ハマ画房",
	link: "http://creativemap.jp/spot/buy/hamagabou.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.44663423606256" || null,
	long: "139.62889328598976" || null,
	id: "19" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "グラフィックステーション",
	link: "http://creativemap.jp/spot/buy/graphicstation.html",
	img: "/spot/images/no_image.jpg",
	lat: "35.45429038435767" || null,
	long: "139.63829040527344" || null,
	id: "18" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "東急ハンズ 横浜店",
	link: "http://creativemap.jp/spot/buy/post.html",
	img: "/spot/images/tokyuhands_y.jpg",
	lat: "35.46365856098254" || null,
	long: "139.6169051527977" || null,
	id: "17" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "トゥールズ 横浜ジョイナス店",
	link: "http://creativemap.jp/spot/buy/tools-joinus.html",
	img: "/spot/images/tools_joinus.jpg",
	lat: "35.46490815132634" || null,
	long: "139.62071120738983" || null,
	id: "16" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "SHOP99 伊勢佐木長者町店",
	link: "http://creativemap.jp/spot/buy/shop99-isezaki.html",
	img: "/spot/images/shop99_isezaki.jpg",
	lat: "35.440240444580496" || null,
	long: "139.6339264512062" || null,
	id: "15" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "100円生活工房 日ノ出町店",
	link: "http://creativemap.jp/spot/buy/100seikatsu.html",
	img: "/spot/images/100seikatsu.jpg",
	lat: "35.445626908908935" || null,
	long: "139.627043902874" || null,
	id: "14" || null,
	cat_id: ["2"],
	category: ["買う"]
});

spotArr.push({
	title: "横浜美術館美術情報センター",
	link: "http://creativemap.jp/spot/use/bijutsujouhoucenter.html",
	img: "/spot/images/bijutsujouhoucenter.jpg",
	lat: "35.45696112503567" || null,
	long: "139.63081240653992" || null,
	id: "13" || null,
	cat_id: ["3"],
	category: ["使う"]
});

spotArr.push({
	title: "ZAIM",
	link: "http://creativemap.jp/spot/visit/zaim.html",
	img: "/spot/images/zaim.jpg",
	lat: "35.44501289203" || null,
	long: "139.64161098003387" || null,
	id: "12" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "急な坂スタジオ",
	link: "http://creativemap.jp/spot/visit/kyunasaka.html",
	img: "/spot/images/kyunasaka.jpg",
	lat: "35.44651405669572" || null,
	long: "139.62458431720734" || null,
	id: "11" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "本町ビル45",
	link: "http://creativemap.jp/spot/visit/honchobuil45.html",
	img: "/spot/images/honchobuil45.jpg",
	lat: "35.44963429191834" || null,
	long: "139.63619828224182" || null,
	id: "8" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "北仲WHITE&BRICK跡地",
	link: "http://creativemap.jp/spot/visit/kitanaka-whitebrick.html",
	img: "/spot/images/kitanaka_whitebrick.jpg",
	lat: "35.45083821588154" || null,
	long: "139.63583886623383" || null,
	id: "7" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "本町実験ギャラリー",
	link: "http://creativemap.jp/spot/visit/honchojikkenngallery.html",
	img: "/spot/images/honchojikkengallery.jpg",
	lat: "35.44951848703041" || null,
	long: "139.63624387979507" || null,
	id: "6" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "東京藝術大学 馬車道校舎",
	link: "http://creativemap.jp/spot/visit/geidai-bashamichi.html",
	img: "/spot/images/geidai_bashamichi.jpg",
	lat: "35.44928906176029" || null,
	long: "139.6372228860855" || null,
	id: "5" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});

spotArr.push({
	title: "BankART Studio NYK",
	link: "http://creativemap.jp/spot/visit/bankart-nyk.html",
	img: "/spot/images/bankart_nyk.jpg",
	lat: "35.45038592714009" || null,
	long: "139.64023634791374" || null,
	id: "4" || null,
	cat_id: ["3","4","1","2"],
	category: ["使う","滞在する","見る・知る","買う"]
});

spotArr.push({
	title: "野毛マリヤビル",
	link: "http://creativemap.jp/spot/visit/noge-mariyabuil.html",
	img: "/spot/images/noge_mariyabuil.jpg",
	lat: "35.446160072790676" || null,
	long: "139.62909579277039" || null,
	id: "3" || null,
	cat_id: ["1"],
	category: ["見る・知る"]
});




