	　　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 GSmallMapControl());
	
	　　var point = new JPoint(139.732211, 36.378513);
	
	　　map.centerAndZoom( point , 2);
	
	　　// ベースアイコンの生成
	　　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);

	　　// 
	　　var or1_icon = new GIcon(baseicon);
	　　or1_icon.image = "../data/images/common/map/map1-or-a.png";
	　　or1_icon.transparent = "../data/images/common/map/map1-or-a.png";
	　　addMarker( new JPoint(139.730515 , 36.378439), or1_icon, "<strong>乗船場・待合所</strong>");

	　　// 駐車場
	　　var or2_icon = new GIcon(baseicon);
	　　or2_icon.image = "../data/images/common/map/map1-or-b.png";
	　　or2_icon.transparent = "../data/images/common/map/map1-or-b.png";
	　　addMarker( new JPoint(139.734381 , 36.379698), or2_icon, "<strong>蔵の街第1駐車場</strong>");

	　　// 駐車場
	　　var or3_icon = new GIcon(baseicon);
	　　or3_icon.image = "../data/images/common/map/map1-or-c.png";
	　　or3_icon.transparent = "../data/images/common/map/map1-or-c.png";
	　　addMarker( new JPoint(139.730633 , 36.376293), or3_icon, "<strong>蔵の街第5駐車場</strong>");

	　　function addMarker( p, icon, text ) {
	　　　　var marker = new GMarker(p, icon);
	　　　　GEvent.addListener( marker, "click", function() {
	　　　　　　marker.openInfoWindowHtml(text);
	　　　　});
	　　　　map.addOverlay(marker);
	　　　　return marker;
	　　}

