var WorldMapService=function() {
WorldMapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WorldMapService.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(WorldMapService.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
GetLocationsByArea:function(userId,uLeft,bRight,succeededCallback, failedCallback, userContext) {
return this._invoke(WorldMapService.get_path(), 'GetLocationsByArea',false,{userId:userId,uLeft:uLeft,bRight:bRight},succeededCallback,failedCallback,userContext); }}
WorldMapService.registerClass('WorldMapService',Sys.Net.WebServiceProxy);
WorldMapService._staticInstance = new WorldMapService();
WorldMapService.set_path = function(value) { WorldMapService._staticInstance._path = value; }
WorldMapService.get_path = function() { return WorldMapService._staticInstance._path; }
WorldMapService.set_timeout = function(value) { WorldMapService._staticInstance._timeout = value; }
WorldMapService.get_timeout = function() { return WorldMapService._staticInstance._timeout; }
WorldMapService.set_defaultUserContext = function(value) { WorldMapService._staticInstance._userContext = value; }
WorldMapService.get_defaultUserContext = function() { return WorldMapService._staticInstance._userContext; }
WorldMapService.set_defaultSucceededCallback = function(value) { WorldMapService._staticInstance._succeeded = value; }
WorldMapService.get_defaultSucceededCallback = function() { return WorldMapService._staticInstance._succeeded; }
WorldMapService.set_defaultFailedCallback = function(value) { WorldMapService._staticInstance._failed = value; }
WorldMapService.get_defaultFailedCallback = function() { return WorldMapService._staticInstance._failed; }
WorldMapService.set_path("/WorldMapService.asmx");
WorldMapService.HelloWorld= function(onSuccess,onFailed,userContext) {WorldMapService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
WorldMapService.GetLocationsByArea= function(userId,uLeft,bRight,onSuccess,onFailed,userContext) {WorldMapService._staticInstance.GetLocationsByArea(userId,uLeft,bRight,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Location) === 'undefined') {
var Location=gtc("Location");
Location.registerClass('Location');
}
