/* ==========================================================================
 * GOOGLE MAPS API
 * ========================================================================== */

function loadGoogleMaps(dest) {

	if (!GBrowserIsCompatible()) {
		document.getElementById("map").innerHTML = "Google Mapsに対応していません";
	}

	else {
		var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());

		if (navigator.userAgent.indexOf("MSIE 6.0") == -1) { //IE6で表示させない
			map.addControl(new GOverviewMapControl(new GSize(150, 120))); //右下の枠
			var ctrlObj = new GScaleControl();
			var pos = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(80, 10)); //縮尺基準
			map.addControl(ctrlObj);
			map.addControl(ctrlObj, pos);
		}

		//マーカと情報ウィンドウの設定
		function create_Marker(point, home) {
			var marker = new GMarker(point);
			var txt = "<h5>" + home + "</h5><strong>住所：</strong>" + info;
			map.openInfoWindow(point, txt);
			return marker;
		}

		//座標とかの設定
		var dests = {
			'setagaya-nakamachi' : {
					'name' : 'アライブ世田谷中町',
					'address' : '〒158-0091 東京都世田谷区中町3-5-23',
					'point' : new GLatLng(35.6155232, 139.6475878)
				},
			'kugahara' : {
					'name' : 'アライブ久が原',
					'address' : '〒146-0085 東京都大田区久が原4-8-18',
					'point' : new GLatLng(35.581597961471964, 139.69257563352585)
				},
			'setagaya-shimouma' : {
					'name' : 'アライブ世田谷下馬',
					'address' : '〒154-0002 東京都世田谷区下馬6-29-22',
					'point' : new GLatLng(35.630865154272534, 139.68052983283997)
				},
			'mejiro' : {
					'name' : 'アライブ目白',
					'address' : '〒161-0033 東京都新宿区下落合2-19-27',
					'point' : new GLatLng(35.71867129061797, 139.70320522785187)
				},
			'ogikubo' : {
					'name' : 'アライブ荻窪',
					'address' : '〒167-0043 東京都杉並区上荻3-21-11',
					'point' : new GLatLng(35.709202229395615, 139.60919111967087)
				},
			'hamadayama' : {
					'name' : 'アライブ浜田山',
					'address' : '〒168-0072 東京都杉並区高井戸東4-27-1',
					'point' : new GLatLng(35.68689714390225, 139.62402373552322)
				},
			'suginami-shoan' : {
					'name' : 'アライブ杉並松庵',
					'address' : '〒167-0054 東京都杉並区松庵2-15-12',
					'point' : new GLatLng(35.69789799022496, 139.59472060203552)
				},
			'kanagawa' : {
					'name' : 'アライブかながわ',
					'address' : '〒252-0324 神奈川県相模原市南区相武台1-18-3',
					'point' : new GLatLng(35.500779714379384, 139.4080200791359)
				}
		}

		map.setCenter(dests[dest].point, 16); //画面中央座標
		map.openInfoWindow(dests[dest].point, "<h5>" + dests[dest].name + "</h5><strong>住所：</strong>" + dests[dest].address);
		map.addOverlay(new GMarker(dests[dest].point));
	}

}

window.onload = function() {
	loadGoogleMaps();
}
