var polysearch=function() {
polysearch.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
polysearch.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(polysearch.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetPropertiesinPolygon:function(topLatitude,topLongitude,bottomLatitude,bottomLongitude,Polygon,pointCount,UserID,TopLeftLat,TopLeftLon,BottomRightLat,BottomRightLon,succeededCallback, failedCallback, userContext) {
return this._invoke(polysearch.get_path(), 'GetPropertiesinPolygon',false,{topLatitude:topLatitude,topLongitude:topLongitude,bottomLatitude:bottomLatitude,bottomLongitude:bottomLongitude,Polygon:Polygon,pointCount:pointCount,UserID:UserID,TopLeftLat:TopLeftLat,TopLeftLon:TopLeftLon,BottomRightLat:BottomRightLat,BottomRightLon:BottomRightLon},succeededCallback,failedCallback,userContext); },
GetPropertiesinSquarePolygon:function(topLatitude,topLongitude,bottomLatitude,bottomLongitude,UserID,succeededCallback, failedCallback, userContext) {
return this._invoke(polysearch.get_path(), 'GetPropertiesinSquarePolygon',false,{topLatitude:topLatitude,topLongitude:topLongitude,bottomLatitude:bottomLatitude,bottomLongitude:bottomLongitude,UserID:UserID},succeededCallback,failedCallback,userContext); },
GetPropertiesinCirclePolygon:function(Lati,Longi,Miles,UserID,succeededCallback, failedCallback, userContext) {
return this._invoke(polysearch.get_path(), 'GetPropertiesinCirclePolygon',false,{Lati:Lati,Longi:Longi,Miles:Miles,UserID:UserID},succeededCallback,failedCallback,userContext); }}
polysearch.registerClass('polysearch',Sys.Net.WebServiceProxy);
polysearch._staticInstance = new polysearch();
polysearch.set_path = function(value) { polysearch._staticInstance._path = value; }
polysearch.get_path = function() { return polysearch._staticInstance._path; }
polysearch.set_timeout = function(value) { polysearch._staticInstance._timeout = value; }
polysearch.get_timeout = function() { return polysearch._staticInstance._timeout; }
polysearch.set_defaultUserContext = function(value) { polysearch._staticInstance._userContext = value; }
polysearch.get_defaultUserContext = function() { return polysearch._staticInstance._userContext; }
polysearch.set_defaultSucceededCallback = function(value) { polysearch._staticInstance._succeeded = value; }
polysearch.get_defaultSucceededCallback = function() { return polysearch._staticInstance._succeeded; }
polysearch.set_defaultFailedCallback = function(value) { polysearch._staticInstance._failed = value; }
polysearch.get_defaultFailedCallback = function() { return polysearch._staticInstance._failed; }
polysearch.set_path("/polysearch.asmx");
polysearch.HelloWorld= function(onSuccess,onFailed,userContext) {polysearch._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
polysearch.GetPropertiesinPolygon= function(topLatitude,topLongitude,bottomLatitude,bottomLongitude,Polygon,pointCount,UserID,TopLeftLat,TopLeftLon,BottomRightLat,BottomRightLon,onSuccess,onFailed,userContext) {polysearch._staticInstance.GetPropertiesinPolygon(topLatitude,topLongitude,bottomLatitude,bottomLongitude,Polygon,pointCount,UserID,TopLeftLat,TopLeftLon,BottomRightLat,BottomRightLon,onSuccess,onFailed,userContext); }
polysearch.GetPropertiesinSquarePolygon= function(topLatitude,topLongitude,bottomLatitude,bottomLongitude,UserID,onSuccess,onFailed,userContext) {polysearch._staticInstance.GetPropertiesinSquarePolygon(topLatitude,topLongitude,bottomLatitude,bottomLongitude,UserID,onSuccess,onFailed,userContext); }
polysearch.GetPropertiesinCirclePolygon= function(Lati,Longi,Miles,UserID,onSuccess,onFailed,userContext) {polysearch._staticInstance.GetPropertiesinCirclePolygon(Lati,Longi,Miles,UserID,onSuccess,onFailed,userContext); }

