var MapInfo=function() {
MapInfo.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MapInfo.prototype={
GetMapDetail:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(MapInfo.get_path(), 'GetMapDetail',false,{id:id},succeededCallback,failedCallback,userContext); }}
MapInfo.registerClass('MapInfo',Sys.Net.WebServiceProxy);
MapInfo._staticInstance = new MapInfo();
MapInfo.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; MapInfo._staticInstance._path = value; }
MapInfo.get_path = function() { return MapInfo._staticInstance._path; }
MapInfo.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); }
MapInfo._staticInstance._timeout = value; }
MapInfo.get_timeout = function() { 
return MapInfo._staticInstance._timeout; }
MapInfo.set_defaultUserContext = function(value) { 
MapInfo._staticInstance._userContext = value; }
MapInfo.get_defaultUserContext = function() { 
return MapInfo._staticInstance._userContext; }
MapInfo.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; MapInfo._staticInstance._succeeded = value; }
MapInfo.get_defaultSucceededCallback = function() { 
return MapInfo._staticInstance._succeeded; }
MapInfo.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; MapInfo._staticInstance._failed = value; }
MapInfo.get_defaultFailedCallback = function() { 
return MapInfo._staticInstance._failed; }
MapInfo.set_path("/MapInfo.asmx");
MapInfo.GetMapDetail= function(id,onSuccess,onFailed,userContext) {MapInfo._staticInstance.GetMapDetail(id,onSuccess,onFailed,userContext); }
