// Client stub for the GK_Ajax_map_ajax PHP Class
function GK_Ajax_map_ajax(callback) {
	mode = 'sync';
	if (callback) { mode = 'async'; }
	this.className = 'GK_Ajax_map_ajax';
	this.dispatcher = new HTML_AJAX_Dispatcher(this.className,mode,callback,'/server/map_ajax.php?__file=server/map_ajax.php','JSON');
}
GK_Ajax_map_ajax.prototype  = {
	Sync: function() { this.dispatcher.Sync(); }, 
	Async: function(callback) { this.dispatcher.Async(callback); },
	getNearStationSelect: function() { return this.dispatcher.doCall('getNearStationSelect',arguments); },
	getTownAccess: function() { return this.dispatcher.doCall('getTownAccess',arguments); },
	getNearLine: function() { return this.dispatcher.doCall('getNearLine',arguments); },
	getNearEstate: function() { return this.dispatcher.doCall('getNearEstate',arguments); },
	getNearSchool: function() { return this.dispatcher.doCall('getNearSchool',arguments); },
	getSchool: function() { return this.dispatcher.doCall('getSchool',arguments); },
	getEstate: function() { return this.dispatcher.doCall('getEstate',arguments); },
	getEstateGeo: function() { return this.dispatcher.doCall('getEstateGeo',arguments); }
}


