//----------------------------------------------------------------------

//<![CDATA[
var gMap;

<!-- マーカ生成関数 緑（国立大学） -->
function createMarker1(point, name) {

	var icon1 = new GIcon();
	icon1.image = "http://maps.google.co.jp/mapfiles/ms/icons/green.png";
	icon1.shadow = "http://maps.google.co.jp/mapfiles/ms/icons/shadow.png";
	icon1.iconSize = new GSize(32, 32);
	icon1.shadowSize = new GSize(59, 32);
	icon1.iconAnchor=new GPoint(16, 32);
	icon1.infoWindowAnchor=new GPoint(20, 0);

	var marker1 = new GMarker(point,icon1);
	GEvent.addListener(marker1, "mouseover", function() {
		marker1.openInfoWindowHtml(name);
	});
	GEvent.addListener(marker1, "click", function() {
		gMap.zoomIn()
	});

	return marker1;
}

<!-- マーカ生成関数 水色（公立大学） -->
function createMarker2(point, name) {

	var icon2 = new GIcon();
	icon2.image = "http://maps.google.co.jp/mapfiles/ms/icons/lightblue.png";
	icon2.shadow = "http://maps.google.co.jp/mapfiles/ms/icons/shadow.png";
	icon2.iconSize = new GSize(32, 32);
	icon2.shadowSize = new GSize(59, 32);
	icon2.iconAnchor=new GPoint(16, 32);
	icon2.infoWindowAnchor=new GPoint(20, 0);

	var marker2 = new GMarker(point,icon2);
	GEvent.addListener(marker2, "mouseover", function() {
		marker2.openInfoWindowHtml(name);
	});
	GEvent.addListener(marker2, "click", function() {
		gMap.zoomIn()
	});

	return marker2;
}

<!-- マーカ生成関数 黄（私立大学） -->
function createMarker3(point, name) {

	var icon3 = new GIcon();
	icon3.image = "http://maps.google.co.jp/mapfiles/ms/icons/yellow.png";
	icon3.shadow = "http://maps.google.co.jp/mapfiles/ms/icons/shadow.png";
	icon3.iconSize = new GSize(32, 32);
	icon3.shadowSize = new GSize(59, 32);
	icon3.iconAnchor=new GPoint(16, 32);
	icon3.infoWindowAnchor=new GPoint(20, 0);

	var marker3 = new GMarker(point,icon3);
	GEvent.addListener(marker3, "mouseover", function() {
		marker3.openInfoWindowHtml(name);
	});
	GEvent.addListener(marker3, "click", function() {
		gMap.zoomIn()
	});

	return marker3;
}

<!-- マーカ生成関数 紫（防医大） -->
function createMarker4(point, name) {

	var icon4 = new GIcon();
	icon4.image = "http://maps.google.co.jp/mapfiles/ms/icons/purple.png";
	icon4.shadow = "http://maps.google.co.jp/mapfiles/ms/icons/shadow.png";
	icon4.iconSize = new GSize(32, 32);
	icon4.shadowSize = new GSize(59, 32);
	icon4.iconAnchor=new GPoint(16, 32);
	icon4.infoWindowAnchor=new GPoint(20, 0);

	var marker4 = new GMarker(point,icon4);
	GEvent.addListener(marker4, "mouseover", function() {
		marker4.openInfoWindowHtml(name);
	});
	GEvent.addListener(marker4, "click", function() {
		gMap.zoomIn()
	});

	return marker4;
}

<!-- マーカ生成関数 赤（予備校） -->
function createMarker5(point, name) {

	var icon5 = new GIcon();
	icon5.image = "http://maps.google.co.jp/mapfiles/ms/icons/red.png";
	icon5.shadow = "http://maps.google.co.jp/mapfiles/ms/icons/shadow.png";
	icon5.iconSize = new GSize(32, 32);
	icon5.shadowSize = new GSize(59, 32);
	icon5.iconAnchor=new GPoint(16, 32);
	icon5.infoWindowAnchor=new GPoint(20, 0);

	var marker5 = new GMarker(point,icon5);
	GEvent.addListener(marker5, "mouseover", function() {
		marker5.openInfoWindowHtml(name);
	});
	GEvent.addListener(marker5, "click", function() {
		gMap.zoomIn()
	});

	return marker5;
}

<!-- マーカ生成関数 赤・点（出稿予備校） -->
function createMarker6(point, name) {

	var icon6 = new GIcon();
	icon6.image = "http://maps.google.co.jp/mapfiles/ms/icons/red-dot.png";
	icon6.shadow = "http://maps.google.co.jp/mapfiles/ms/icons/shadow.png";
	icon6.iconSize = new GSize(32, 32);
	icon6.shadowSize = new GSize(59, 32);
	icon6.iconAnchor=new GPoint(16, 32);
	icon6.infoWindowAnchor=new GPoint(20, 0);

	var marker6 = new GMarker(point,icon6);
	GEvent.addListener(marker6, "mouseover", function() {
		marker6.openInfoWindowHtml(name);
	});
	GEvent.addListener(marker6, "click", function() {
		gMap.zoomIn()
	});

	return marker6;
}

<!-- 最初に呼び出される関数 -->
function load() {
	if (GBrowserIsCompatible()) {
		<!-- GMap2オブジェクトの生成 -->
		gMap = new GMap2(document.getElementById("map"));

		<!-- 各種コントロールの追加 -->
		gMap.addControl(new GLargeMapControl());
		gMap.addControl(new GMapTypeControl());

		<!-- なめらかズーム -->
		gMap.enableContinuousZoom();
		<!-- ダブルクリックズーム -->
		gMap.enableDoubleClickZoom();

		<!-- 地図の初期位置の座標 -->
		var lat = 34.6867751195846 ;
		var lng = 135.519533157348 ;

		<!-- 初期位置へ移動 -->
		var centerPoint = new GLatLng(lat, lng);
		gMap.setCenter(centerPoint, 9);

		<!-- マーカの描画 -->
		gMap.addOverlay(createMarker5(new GLatLng(34.7347245473338  ,135.499598979949 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">大阪医歯学院（予備校）<br />〒532-0003&nbsp;大阪府大阪市淀川区宮原1-2-31グランプリ第2ビル?</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7413810729837  ,135.497265458106 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">カルテット（予備校）<br />〒532-0002&nbsp;大阪府大阪市淀川区東三国4-4-15COLUMN新大阪</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7114224850897  ,135.497750937938 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">河合塾大阪校〔医進館〕（予備校）<br />〒531-0072&nbsp;大阪府大阪市北区豊崎5-8-4</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6984150068850  ,135.512165129184 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">個人指導センター（予備校）<br />〒530-0041&nbsp;大阪府大阪市北区天神橋2-北1-21八千代ビル東館</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6893996402853  ,135.517650246620 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">私塾〔大阪天満橋校〕（予備校）<br />〒540-0012&nbsp;大阪府大阪市中央区谷町1-1-5</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.8173486620250  ,135.577189922332 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">進学塾ビッグバン〔個別指導教室〕（予備校）<br />〒567-0829&nbsp;大阪府茨木市双葉町2-29エスタシオン茨木</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6667245651213  ,135.517382025718 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">進学塾ビッグバン〔上本町校〕（予備校）<br />〒542-0064&nbsp;大阪府大阪市中央区上汐2丁目3-6上汐中央ビル2F</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6989618957684  ,135.496471524238 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">日本医歯薬研修協会〔大阪校〕（予備校）<br />〒530-0001&nbsp;大阪府大阪市北区梅田1-3-1大阪駅前第1ビル9階</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7264185674163  ,135.498113036155 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">日本編入学院〔大阪校〕（予備校）<br />〒532-0011&nbsp;大阪府大阪市淀川区西中島4丁目2-26天神第一ビル9F</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7108337859870  ,135.499094724655 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">フェニックスゼミ（予備校）<br />〒531-0072&nbsp;大阪府大阪市北区豊崎3-6-11エイトビル5F?</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6932370249715  ,135.495661497116 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">メック〔大阪校〕（予備校）<br />〒530-0005&nbsp;大阪府大阪市北区中之島3-2-4朝日新聞ビル</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7103597368476  ,135.501648187637 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">medika〔大阪スクール〕（予備校）<br />〒531-0072&nbsp;大阪府大阪市北区豊崎2-5-25</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6708983038826  ,135.500728189945 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">メディカルラボ〔大阪校〕（予備校）<br />〒542-0085&nbsp;大阪府大阪市中央区心斎橋筋2-7-18プライムスクエア心斎橋6F</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6474260112782  ,135.510904490947 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">医進予備校MEDiC（予備校）<br />〒545-0051&nbsp;大阪府大阪市阿倍野区旭町1-1-10竹澤ビル7F</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.6891416028627  ,135.514318943023 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">メビオ（予備校）<br />〒540-0033&nbsp;大阪府大阪市中央区石町2-3-12ベルヴォア天満橋?</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7056190960277  ,135.496723651885 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">リニア（予備校）<br />〒530-0012&nbsp;大阪府大阪市北区芝田2-1-18西阪急ビル4F</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7414185419745  ,135.497273504734 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">Logos（黒木塾）〔東教室〕（予備校）<br />〒532-0002&nbsp;大阪府大阪市淀川区東三国4丁目4番15号COLUMN新大阪</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7418373118918  ,135.496431291103 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">Logos（黒木塾）〔北教室〕（予備校）<br />〒532-0002&nbsp;大阪府大阪市淀川区東三国5丁目7番4号</div>"));
		gMap.addOverlay(createMarker5(new GLatLng(34.7414449906636  ,135.497107207775 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \">Logos（黒木塾）〔本部教室〕（予備校）<br />〒532-0002&nbsp;大阪府大阪市淀川区東三国4丁目4番11号</div>"));
		gMap.addOverlay(createMarker1(new GLatLng(34.8194934115268  ,135.528116226196 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \"><a href=\"http://www.ishin-navi.com/area/osaka/osaka/\">大阪大学</a>（国立大学）<br />〒565-0871&nbsp;大阪府吹田市山田丘1-1</div>"));
		gMap.addOverlay(createMarker2(new GLatLng(34.6464771840508  ,135.509772598743 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \"><a href=\"http://www.ishin-navi.com/area/osaka/osakacity/\">大阪市立大学</a>（公立大学）<br />〒545-8585&nbsp;大阪市阿倍野区旭町1丁目4番3号</div>"));
		gMap.addOverlay(createMarker3(new GLatLng(34.8518120303633  ,135.625437498092 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \"><a href=\"http://www.ishin-navi.com/area/osaka/osakamedical/\">大阪医科大学</a>（私立大学）<br />〒569-8686&nbsp;大阪府高槻市大学町2-7</div>"));
		gMap.addOverlay(createMarker3(new GLatLng(34.7287905300546  ,135.556365251541 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \"><a href=\"http://www.ishin-navi.com/area/osaka/kansaimedical/\">関西医科大学</a>（私立大学）<br />〒570-8506&nbsp;大阪府守口市文園町10-15</div>"));
		gMap.addOverlay(createMarker3(new GLatLng(34.4769244306823  ,135.55056631565 ), "<div style=\"font-size:13px; font-family:sans-serif; text-align:left; width:200px; \"><a href=\"http://www.ishin-navi.com/area/osaka/kinki/\">近畿大学</a>（私立大学）<br />〒589-8511&nbsp;大阪府大阪狭山市大野東377-2</div>"));
	}	// if (GBrowserIsCompatible())
}	// function load()


//]]>
//----------------------------------------------------------------------

