////////////////////////////////////////////////////////////
//
//ファイル名:   event.js
//機能		:	イベント管理
//依存		:	main.js
//バージョン:　 2.0.0.1
//更新日時	:　 2006.08.01
//更新者	:	kawame
//
////////////////////////////////////////////////////////////


function EventManager(gis)
{
	var gisMain = gis;
	
	// ビュー変更
	this.viewChange = null;
	
	// 地物検索
	this.featureSearch = null;

	// 地物選択

	this.featureSelect = null;
	
	// 地物選択クリア
	this.featureClear = null;
	
	// 地物追加
	this.featureAdd = null;
	
	// 地物更新
	this.featureUpdate = null;
	
	// 地物削除
	this.featureDelete = null;
	
	// 点指定

	this.pointSelect = null;
	
	// 線指定

	this.curveSelect = null;
	
	// 面指定

	this.surfaceSelect = null;
	
	// 円指定

	this.circleSelect = null;
	
	// テキスト指定

	this.textSelect = null;
	
	// 地図再描画前

	this.beforeRedraw = null;
	
	// 地図再描画後

	this.afterRedraw = null;
	
	// 距離計測
	this.lengthMeasure = null;
	
	// 面積計測
	this.circleMeasure = null;
}

