function SimpleMapControl() {} 
SimpleMapControl.prototype = new GControl();
SimpleMapControl.prototype.initialize = function(map){
	var container = document.createElement("div");
	
	//01
	var topDiv = document.createElement("div");
	topDiv.className = "simple_control";
	
	// 02
	var secondDiv1 = document.createElement("div");
	secondDiv1.className = "dvleft";
	secondDiv1.style.paddingTop = "2px";
	
	// 03
	var vectorbtnDiv1 = document.createElement("div");
	vectorbtnDiv1.className = "vectorbtndv";
	
	// 04
	var vectorbtnU = document.createElement("input");
	vectorbtnU.type="button";
	vectorbtnU.value="↑";
	vectorbtnU.className = "vectorbtn";
	vectorbtnU.title = "1画面分北を表示";
	GEvent.addDomListener(vectorbtnU, "click", function() {map.panBy(new GSize(0, mapHeight));});
	
	// 05　(閉じタグの為、省略)
	
	// 06
	var vectorbtnDiv2 = document.createElement("div");
	vectorbtnDiv2.className = "vectorbtndv";
	
	// 07
	var vectorbtnL = document.createElement("input");
	vectorbtnL.type="button";
	vectorbtnL.value="←";
	vectorbtnL.className = "vectorbtn";
	vectorbtnL.title = "1画面分西を表示";
	GEvent.addDomListener(vectorbtnL, "click", function() {map.panBy(new GSize(mapWidth, 0));});
	
	var vectorbtnD = document.createElement("input");
	vectorbtnD.type="button";
	vectorbtnD.value="↓";
	vectorbtnD.className = "vectorbtn";
	vectorbtnD.title = "1画面分南を表示";
	GEvent.addDomListener(vectorbtnD, "click", function() {map.panBy(new GSize(0, -1 * mapHeight));});
	
	var vectorbtnR = document.createElement("input");
	vectorbtnR.type="button";
	vectorbtnR.value="→";
	vectorbtnR.className = "vectorbtn";
	vectorbtnR.title = "1画面分東を表示";
	GEvent.addDomListener(vectorbtnR, "click", function() {map.panBy(new GSize(-1 * mapWidth, 0));});
	
	// 08　(閉じタグの為、省略)
	// 09　(閉じタグの為、省略)
	
	// 10
	var secondDiv2 = document.createElement("div");
	secondDiv2.className = "dvleft";
	secondDiv2.style.paddingTop = "2px";
	
	// 11
	var moveDiv = document.createElement("div");
	moveDiv.className = "movedv";
	
	// 12
	var divLeft1 = document.createElement("div");
	divLeft1.className = "dvleft";
	
	// 13
	var cnLat = document.createElement("input");
	cnLat.type="text";
	cnLat.size="20";
	cnLat.className="postext";
	
	var delimiter = document.createTextNode(" , ");
	
	var cnLng = document.createElement("input");
	cnLng.type="text";
	cnLng.size="20";
	cnLng.className="postext";
	
	// 14　(閉じタグの為、省略)
	
	// 15
	var divLeft2 = document.createElement("div");
	divLeft2.className = "dvleft";
	
	// 16
	var movebtn = document.createElement("input");
	movebtn.type="button";
	movebtn.value="移動";
	movebtn.className="shortbtn";
	movebtn.title="指定した座標が中央にくるように移動します。"
	GEvent.addDomListener(movebtn, "click", function() {clickMove(cnLat,cnLng);});
	
	// 17　(閉じタグの為、省略)
	// 18　(閉じタグの為、省略)
	
	// 19
	var longbtndv = document.createElement("div");
	divLeft2.className = "longbtndv";
	
	// 20
	var longbtn1 = document.createElement("input");
	longbtn1.type="button";
	longbtn1.value="東京に戻る";
	longbtn1.className="longbtn";
	GEvent.addDomListener(longbtn1, "click", function() {clickBackToTokyo();});
	
	// 21
	var longbtn2 = document.createElement("input");
	longbtn2.type="button";
	longbtn2.value="縦横表示切替";
	longbtn2.className="longbtn";
	GEvent.addDomListener(longbtn2, "click", function() {clickChangeDisp();});
	
	
	container.appendChild(topDiv);
	
	topDiv.appendChild(secondDiv1);
	secondDiv1.appendChild(vectorbtnDiv1);
	vectorbtnDiv1.appendChild(vectorbtnU);
	
	secondDiv1.appendChild(vectorbtnDiv2);
	vectorbtnDiv2.appendChild(vectorbtnL);
	vectorbtnDiv2.appendChild(vectorbtnD);
	vectorbtnDiv2.appendChild(vectorbtnR);
	
	topDiv.appendChild(secondDiv2);
	secondDiv2.appendChild(moveDiv);
	moveDiv.appendChild(divLeft1);
	divLeft1.appendChild(cnLat);
	divLeft1.appendChild(delimiter);
	divLeft1.appendChild(cnLng);
	moveDiv.appendChild(divLeft2);
	divLeft1.appendChild(movebtn);
	
	secondDiv2.appendChild(longbtndv);
	longbtndv.appendChild(longbtn1);
	longbtndv.appendChild(longbtn2);
	
	map.getContainer().appendChild(container);
	return container;
}

SimpleMapControl.prototype.getDefaultPosition = function(){
	return new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(40, 2));
}

//01		<div class="simple_control"/>
//02			<div class="dvleft" style="padding-top:2px;">
//03				<div class="vectorbtndv">
//04					<input type="button" value="↑" class="vectorbtn" title="1画面分北を表示" onclick="clickU();"/>
//05				</div>
//06				<div class="vectorbtndv">
//07					<input type="button" value="←" class="vectorbtn" title="1画面分西を表示" onclick="clickL();"/><input type="button" value="↓" class="vectorbtn" title="1画面分南を表示" onclick="clickD();"/><input type="button" value="→" class="vectorbtn" title="1画面分東を表示" onclick="clickR();"/>
//08				</div>
//09			</div>
//10			<div class="dvleft">
//11				<div class="movedv">
//12					<div class="dvleft">
//13						<input type="text" id="cnLat" size="20" class="postext"/> , <input type="text" id="cnLng" size="20" class="postext"/>
//14					</div>
//15					<div class="dvleft">
//16						<input type="button" value="移動" class="shortbtn" title="指定した座標が中央にくるように移動します。" onclick="clickMove();" />
//17					</div>
//18				</div>
//19				<div class="longbtndv">
//20					<input type="button" value="東京に戻る" class="longbtn" onclick="clickBackToTokyo();"/>
//21					<input type="button" value="縦横表示切替" class="longbtn" onclick="clickChangeDisp();"/>
//22				</div>
//23			</div>
//24		</div>