addNamespace("OrsaGISWeb");
OrsaGISWeb.MapControl_class = Class.create();
Object.extend(OrsaGISWeb.MapControl_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CloseConnection: function() {
		return this.invoke("CloseConnection", {}, this.CloseConnection.getArguments().slice(0));
	},
	GetLocationInfo: function(lon, lat) {
		return this.invoke("GetLocationInfo", {"lon":lon, "lat":lat}, this.GetLocationInfo.getArguments().slice(2));
	},
	initialize: function() {
		this.url = '/ajaxpro/OrsaGISWeb.MapControl,OrsaGISWeb.ashx';
	}
}));
OrsaGISWeb.MapControl = new OrsaGISWeb.MapControl_class();

