addNamespace("AjaxMap");
AjaxMap.RoutingRequests_class = Class.create();
AjaxMap.RoutingRequests_class.prototype = (new AjaxPro.Request()).extend({
	DoSelectStreetEdgeByPoint: function(x, y, buffer, callback) {
		return this.invoke("DoSelectStreetEdgeByPoint", {"x":x, "y":y, "buffer":buffer}, callback);
	},
	DoCreateRoute: function(sourceid, tragetid, mapstate, callback) {
		return this.invoke("DoCreateRoute", {"sourceid":sourceid, "tragetid":tragetid, "mapstate":mapstate}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/AjaxMap.RoutingRequests,App_Code.ashx";
	}
})
AjaxMap.RoutingRequests = new AjaxMap.RoutingRequests_class();

