var VABMapService=function() {
VABMapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
VABMapService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return VABMapService._staticInstance.get_path();},
GetShapes:function(fileName,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetShapes',false,{fileName:fileName},succeededCallback,failedCallback,userContext); },
GetLabel:function(fileName,latitude,longitude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLabel',false,{fileName:fileName,latitude:latitude,longitude:longitude},succeededCallback,failedCallback,userContext); },
GetShapeInfo:function(fileName,latitude,longitude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetShapeInfo',false,{fileName:fileName,latitude:latitude,longitude:longitude},succeededCallback,failedCallback,userContext); },
GetPreview:function(sRepNum,sQtr,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetPreview',false,{sRepNum:sRepNum,sQtr:sQtr},succeededCallback,failedCallback,userContext); }}
VABMapService.registerClass('VABMapService',Sys.Net.WebServiceProxy);
VABMapService._staticInstance = new VABMapService();
VABMapService.set_path = function(value) { VABMapService._staticInstance.set_path(value); }
VABMapService.get_path = function() { return VABMapService._staticInstance.get_path(); }
VABMapService.set_timeout = function(value) { VABMapService._staticInstance.set_timeout(value); }
VABMapService.get_timeout = function() { return VABMapService._staticInstance.get_timeout(); }
VABMapService.set_defaultUserContext = function(value) { VABMapService._staticInstance.set_defaultUserContext(value); }
VABMapService.get_defaultUserContext = function() { return VABMapService._staticInstance.get_defaultUserContext(); }
VABMapService.set_defaultSucceededCallback = function(value) { VABMapService._staticInstance.set_defaultSucceededCallback(value); }
VABMapService.get_defaultSucceededCallback = function() { return VABMapService._staticInstance.get_defaultSucceededCallback(); }
VABMapService.set_defaultFailedCallback = function(value) { VABMapService._staticInstance.set_defaultFailedCallback(value); }
VABMapService.get_defaultFailedCallback = function() { return VABMapService._staticInstance.get_defaultFailedCallback(); }
VABMapService.set_path("/VABMapService.asmx");
VABMapService.GetShapes= function(fileName,onSuccess,onFailed,userContext) {VABMapService._staticInstance.GetShapes(fileName,onSuccess,onFailed,userContext); }
VABMapService.GetLabel= function(fileName,latitude,longitude,onSuccess,onFailed,userContext) {VABMapService._staticInstance.GetLabel(fileName,latitude,longitude,onSuccess,onFailed,userContext); }
VABMapService.GetShapeInfo= function(fileName,latitude,longitude,onSuccess,onFailed,userContext) {VABMapService._staticInstance.GetShapeInfo(fileName,latitude,longitude,onSuccess,onFailed,userContext); }
VABMapService.GetPreview= function(sRepNum,sQtr,onSuccess,onFailed,userContext) {VABMapService._staticInstance.GetPreview(sRepNum,sQtr,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Shape) === 'undefined') {
var Shape=gtc("Shape");
Shape.registerClass('Shape');
}
Type.registerNamespace('App_Code');
if (typeof(App_Code.Pushpin) === 'undefined') {
App_Code.Pushpin=gtc("App_Code.Pushpin");
App_Code.Pushpin.registerClass('App_Code.Pushpin');
}
