googlemapでクリックしたマーカーを地図の中心に移動

googlemapでクリックしたマーカーを地図の中心に移動
google.maps.event.addListener(marker09, "click", function (e) {
	ib.open(theMap, this);
	// 地図の中心を移動  var movePos = new google.maps.LatLng(34.675345, 135.499509);
	theMap.panTo(movePos);
});