var GetMap=function() {
GetMap.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GetMap.prototype={
getListUrl:function(mode,isIti,session,mapCenterX,mapCenterY,zoom,inc,succeededCallback, failedCallback, userContext) {
return this._invoke(GetMap.get_path(), 'getListUrl',false,{mode:mode,isIti:isIti,session:session,mapCenterX:mapCenterX,mapCenterY:mapCenterY,zoom:zoom,inc:inc},succeededCallback,failedCallback,userContext); }}
GetMap.registerClass('GetMap',Sys.Net.WebServiceProxy);
GetMap._staticInstance = new GetMap();
GetMap.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; GetMap._staticInstance._path = value; }
GetMap.get_path = function() { return GetMap._staticInstance._path; }
GetMap.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
GetMap._staticInstance._timeout = value; }
GetMap.get_timeout = function() { 
return GetMap._staticInstance._timeout; }
GetMap.set_defaultUserContext = function(value) { 
GetMap._staticInstance._userContext = value; }
GetMap.get_defaultUserContext = function() { 
return GetMap._staticInstance._userContext; }
GetMap.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; GetMap._staticInstance._succeeded = value; }
GetMap.get_defaultSucceededCallback = function() { 
return GetMap._staticInstance._succeeded; }
GetMap.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; GetMap._staticInstance._failed = value; }
GetMap.get_defaultFailedCallback = function() { 
return GetMap._staticInstance._failed; }
GetMap.set_path("/services/GetMap.asmx");
GetMap.getListUrl= function(mode,isIti,session,mapCenterX,mapCenterY,zoom,inc,onSuccess,onFailed,userContext) {GetMap._staticInstance.getListUrl(mode,isIti,session,mapCenterX,mapCenterY,zoom,inc,onSuccess,onFailed,userContext); }
