	　　function JPoint( a, b ) {
	　　　　this.x = a - b * 0.0 - a * 0.0 + 0.0;
	　　　　this.y = b - b * 0.0 + a * 0.0 + 0.0;
	　　}
	　　JPoint.prototype = GPoint.prototype;
	
	　　var map = new GMap(document.getElementById("googlemap"));
	　　map.addControl(new GLargeMapControl());
	
	　　var point = new JPoint(139.728021, 36.383325);
	
	　　map.centerAndZoom( point , 3);
	
	
	　　// ベースアイコンの生成
	　　var baseicon = new GIcon();
	　　baseicon.shadow="../data/images/common/map/map1-shadow.png";
	　　baseicon.iconSize = new GSize(25,32);
	　　baseicon.shadowSize = new GSize(25,32);
	　　baseicon.iconAnchor = new GPoint(12,32);
	　　baseicon.infoWindowAnchor = new GPoint(15,32);
	
	　　// 1
	　　var no1_icon = new GIcon(baseicon);
	　　no1_icon.image = "../data/images/common/map/map1-or-a.png";
	　　no1_icon.transparent = "../data/images/common/map/map1-or-a.png";
	　　addMarker( new JPoint(139.742559 , 36.381039), no1_icon, "<strong>千代田タクシー有限会社</strong><br />栃木県栃木市神田町6-13<br />0282-22-5151<br />0120-76-5152");
	
	　　// 2
	　　var no2_icon = new GIcon(baseicon);
	　　no2_icon.image = "../data/images/common/map/map1-or-b.png";
	　　no2_icon.transparent = "../data/images/common/map/map1-or-b.png";
	　　addMarker( new JPoint(139.73259 , 36.372793), no2_icon, "<strong>栃南タクシー栃木営業所</strong><br />栃木県栃木市河合町1-9<br />282-23-3000<br />0120-23-3000");
	
	　　// 3
	　　var no3_icon = new GIcon(baseicon);
	　　no3_icon.image = "../data/images/common/map/map1-or-c.png";
	　　no3_icon.transparent = "../data/images/common/map/map1-or-c.png";
	　　addMarker( new JPoint(139.730362 , 36.372568), no3_icon, "<strong>栃木合同タクシー株式会社</strong><br />栃木県栃木市境町21-30<br />0282-22-5000<br />0120-15-5000");
	
	　　// 4
	　　var no4_icon = new GIcon(baseicon);
	　　no4_icon.image = "../data/images/common/map/map1-or-d.png";
	　　no4_icon.transparent = "../data/images/common/map/map1-or-d.png";
	　　addMarker( new JPoint(139.735365 , 36.385386), no4_icon, "<strong>栃木交通有限会社</strong><br />栃木県栃木市泉町10-5<br />0282-23-3300");

	　　function addMarker( p, icon, text ) {
	　　　　var marker = new GMarker(p, icon);
	　　　　GEvent.addListener( marker, "click", function() {
	　　　　　　marker.openInfoWindowHtml(text);
	　　　　});
	　　　　map.addOverlay(marker);
	　　　　return marker;
	　　}
