var GoogleMapService=function() {
GoogleMapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GoogleMapService.prototype={
GetJusho:function(companyCode,succeededCallback, failedCallback, userContext) {
return this._invoke(GoogleMapService.get_path(), 'GetJusho',false,{companyCode:companyCode},succeededCallback,failedCallback,userContext); },
GetLatitudeLongitude:function(companyCode,succeededCallback, failedCallback, userContext) {
return this._invoke(GoogleMapService.get_path(), 'GetLatitudeLongitude',false,{companyCode:companyCode},succeededCallback,failedCallback,userContext); },
SetLatitudeLongitude:function(companyCode,latitude,longitude,succeededCallback, failedCallback, userContext) {
return this._invoke(GoogleMapService.get_path(), 'SetLatitudeLongitude',false,{companyCode:companyCode,latitude:latitude,longitude:longitude},succeededCallback,failedCallback,userContext); }}
GoogleMapService.registerClass('GoogleMapService',Sys.Net.WebServiceProxy);
GoogleMapService._staticInstance = new GoogleMapService();
GoogleMapService.set_path = function(value) { GoogleMapService._staticInstance._path = value; }
GoogleMapService.get_path = function() { return GoogleMapService._staticInstance._path; }
GoogleMapService.set_timeout = function(value) { GoogleMapService._staticInstance._timeout = value; }
GoogleMapService.get_timeout = function() { return GoogleMapService._staticInstance._timeout; }
GoogleMapService.set_defaultUserContext = function(value) { GoogleMapService._staticInstance._userContext = value; }
GoogleMapService.get_defaultUserContext = function() { return GoogleMapService._staticInstance._userContext; }
GoogleMapService.set_defaultSucceededCallback = function(value) { GoogleMapService._staticInstance._succeeded = value; }
GoogleMapService.get_defaultSucceededCallback = function() { return GoogleMapService._staticInstance._succeeded; }
GoogleMapService.set_defaultFailedCallback = function(value) { GoogleMapService._staticInstance._failed = value; }
GoogleMapService.get_defaultFailedCallback = function() { return GoogleMapService._staticInstance._failed; }
GoogleMapService.set_path("/DeskTopModules/GoogleMapService.asmx");
GoogleMapService.GetJusho= function(companyCode,onSuccess,onFailed,userContext) {GoogleMapService._staticInstance.GetJusho(companyCode,onSuccess,onFailed,userContext); }
GoogleMapService.GetLatitudeLongitude= function(companyCode,onSuccess,onFailed,userContext) {GoogleMapService._staticInstance.GetLatitudeLongitude(companyCode,onSuccess,onFailed,userContext); }
GoogleMapService.SetLatitudeLongitude= function(companyCode,latitude,longitude,onSuccess,onFailed,userContext) {GoogleMapService._staticInstance.SetLatitudeLongitude(companyCode,latitude,longitude,onSuccess,onFailed,userContext); }
