説明
		
			
			
		
マーカーをドラッグできるようにするにはGMarker()の二番目のパラメータにプロパティリストの形でdraggable: trueを記述します。
続きは書籍で、どうぞ...
				 
			
				
				
		<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
		<html xmlns="http://www.w3.org/1999/xhtml">
		<head>
		<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
		<title>Sample</title>
		<script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAasAJryKxWJnBFVJa487d9hTHGAxTVT7IRADYa-JdYz7xQ8IQZBSthgDZdggYpQHsmm6WYtHstQFfLA" type="text/javascript"></script>
		<script type="text/javascript">
		//<![CDATA[
		 window.onload = function() {
		  var map = new GMap2(document.getElementById("gmap"));
		  map.setCenter(new GLatLng(37,136), 5,G_NORMAL_MAP);
		  var gpObj = new GLatLng(36.5, 138);
		  marker = new GMarker(gpObj, {
		   draggable: true
		  });
		  map.addOverlay(marker);
		 }
		//]]>
		</script>
		</head>
		<body>
		<div id="gmap" style="width: 500px; height: 400px"></div>
		</body>
		</html>