var ViewMapServices=function() {
ViewMapServices.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ViewMapServices.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
PropertyInfo:function(oid,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'PropertyInfo',false,{oid:oid},succeededCallback,failedCallback,userContext); },
GetReviteAreaBlocks:function(oid,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'GetReviteAreaBlocks',false,{oid:oid},succeededCallback,failedCallback,userContext); },
GetCompletionListTest:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'GetCompletionListTest',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetGeoAddress:function(address,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'GetGeoAddress',false,{address:address},succeededCallback,failedCallback,userContext); },
GetAddressHTML:function(addr,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'GetAddressHTML',false,{addr:addr},succeededCallback,failedCallback,userContext); },
GetGeoPolygon:function(address,succeededCallback, failedCallback, userContext) {
return this._invoke(ViewMapServices.get_path(), 'GetGeoPolygon',false,{address:address},succeededCallback,failedCallback,userContext); }}
ViewMapServices.registerClass('ViewMapServices',Sys.Net.WebServiceProxy);
ViewMapServices._staticInstance = new ViewMapServices();
ViewMapServices.set_path = function(value) { ViewMapServices._staticInstance._path = value; }
ViewMapServices.get_path = function() { return ViewMapServices._staticInstance._path; }
ViewMapServices.set_timeout = function(value) { ViewMapServices._staticInstance._timeout = value; }
ViewMapServices.get_timeout = function() { return ViewMapServices._staticInstance._timeout; }
ViewMapServices.set_defaultUserContext = function(value) { ViewMapServices._staticInstance._userContext = value; }
ViewMapServices.get_defaultUserContext = function() { return ViewMapServices._staticInstance._userContext; }
ViewMapServices.set_defaultSucceededCallback = function(value) { ViewMapServices._staticInstance._succeeded = value; }
ViewMapServices.get_defaultSucceededCallback = function() { return ViewMapServices._staticInstance._succeeded; }
ViewMapServices.set_defaultFailedCallback = function(value) { ViewMapServices._staticInstance._failed = value; }
ViewMapServices.get_defaultFailedCallback = function() { return ViewMapServices._staticInstance._failed; }
ViewMapServices.set_path("/hudpls/ViewMapServices.asmx");
ViewMapServices.HelloWorld= function(onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
ViewMapServices.PropertyInfo= function(oid,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.PropertyInfo(oid,onSuccess,onFailed,userContext); }
ViewMapServices.GetReviteAreaBlocks= function(oid,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.GetReviteAreaBlocks(oid,onSuccess,onFailed,userContext); }
ViewMapServices.GetCompletionListTest= function(prefixText,count,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.GetCompletionListTest(prefixText,count,onSuccess,onFailed,userContext); }
ViewMapServices.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
ViewMapServices.GetGeoAddress= function(address,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.GetGeoAddress(address,onSuccess,onFailed,userContext); }
ViewMapServices.GetAddressHTML= function(addr,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.GetAddressHTML(addr,onSuccess,onFailed,userContext); }
ViewMapServices.GetGeoPolygon= function(address,onSuccess,onFailed,userContext) {ViewMapServices._staticInstance.GetGeoPolygon(address,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(ReviteBlocks) === 'undefined') {
var ReviteBlocks=gtc("ReviteBlocks");
ReviteBlocks.registerClass('ReviteBlocks');
}
if (typeof(GeoAddresses) === 'undefined') {
var GeoAddresses=gtc("GeoAddresses");
GeoAddresses.registerClass('GeoAddresses');
}
if (typeof(GeoAddress) === 'undefined') {
var GeoAddress=gtc("GeoAddress");
GeoAddress.registerClass('GeoAddress');
}
if (typeof(GeoPolygon) === 'undefined') {
var GeoPolygon=gtc("GeoPolygon");
GeoPolygon.registerClass('GeoPolygon');
}
