var TileManagerService=function() {
TileManagerService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
TileManagerService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return TileManagerService._staticInstance.get_path();},
GetLatest:function(locationCSV,type,zoom,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLatest',false,{locationCSV:locationCSV,type:type,zoom:zoom,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetByTime:function(locationCSV,type,zoom,startTime,endTime,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetByTime',false,{locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetLatestCustomed:function(locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLatestCustomed',false,{locationCSV:locationCSV,type:type,zoom:zoom,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetByTimeCustomed:function(locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetByTimeCustomed',false,{locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetLatestWithAuthentication:function(userName,passCode,locationCSV,type,zoom,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLatestWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetByTimeWithAuthentication:function(userName,passCode,locationCSV,type,zoom,startTime,endTime,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetByTimeWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetLatestCustomedWithAuthentication:function(userName,passCode,locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetLatestCustomedWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
GetByTimeCustomedWithAuthentication:function(userName,passCode,locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetByTimeCustomedWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod,sensorsToExclude:sensorsToExclude},succeededCallback,failedCallback,userContext); },
DebugGetLatest:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DebugGetLatest',false,{},succeededCallback,failedCallback,userContext); },
DebugGetByTime:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DebugGetByTime',false,{},succeededCallback,failedCallback,userContext); },
DebugGetLatestCustomed:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DebugGetLatestCustomed',false,{},succeededCallback,failedCallback,userContext); },
DebugGetByTimeCustomed:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DebugGetByTimeCustomed',false,{},succeededCallback,failedCallback,userContext); },
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); }}
TileManagerService.registerClass('TileManagerService',Sys.Net.WebServiceProxy);
TileManagerService._staticInstance = new TileManagerService();
TileManagerService.set_path = function(value) { TileManagerService._staticInstance.set_path(value); }
TileManagerService.get_path = function() { return TileManagerService._staticInstance.get_path(); }
TileManagerService.set_timeout = function(value) { TileManagerService._staticInstance.set_timeout(value); }
TileManagerService.get_timeout = function() { return TileManagerService._staticInstance.get_timeout(); }
TileManagerService.set_defaultUserContext = function(value) { TileManagerService._staticInstance.set_defaultUserContext(value); }
TileManagerService.get_defaultUserContext = function() { return TileManagerService._staticInstance.get_defaultUserContext(); }
TileManagerService.set_defaultSucceededCallback = function(value) { TileManagerService._staticInstance.set_defaultSucceededCallback(value); }
TileManagerService.get_defaultSucceededCallback = function() { return TileManagerService._staticInstance.get_defaultSucceededCallback(); }
TileManagerService.set_defaultFailedCallback = function(value) { TileManagerService._staticInstance.set_defaultFailedCallback(value); }
TileManagerService.get_defaultFailedCallback = function() { return TileManagerService._staticInstance.get_defaultFailedCallback(); }
TileManagerService.set_path("/sensewebv3/sensormap/graphTx/TileManagerService.asmx");
TileManagerService.GetLatest= function(locationCSV,type,zoom,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetLatest(locationCSV,type,zoom,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetByTime= function(locationCSV,type,zoom,startTime,endTime,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetByTime(locationCSV,type,zoom,startTime,endTime,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetLatestCustomed= function(locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetLatestCustomed(locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetByTimeCustomed= function(locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetByTimeCustomed(locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetLatestWithAuthentication= function(userName,passCode,locationCSV,type,zoom,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetLatestWithAuthentication(userName,passCode,locationCSV,type,zoom,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetByTimeWithAuthentication= function(userName,passCode,locationCSV,type,zoom,startTime,endTime,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetByTimeWithAuthentication(userName,passCode,locationCSV,type,zoom,startTime,endTime,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetLatestCustomedWithAuthentication= function(userName,passCode,locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetLatestCustomedWithAuthentication(userName,passCode,locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.GetByTimeCustomedWithAuthentication= function(userName,passCode,locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext) {TileManagerService._staticInstance.GetByTimeCustomedWithAuthentication(userName,passCode,locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,sensorsToExclude,onSuccess,onFailed,userContext); }
TileManagerService.DebugGetLatest= function(onSuccess,onFailed,userContext) {TileManagerService._staticInstance.DebugGetLatest(onSuccess,onFailed,userContext); }
TileManagerService.DebugGetByTime= function(onSuccess,onFailed,userContext) {TileManagerService._staticInstance.DebugGetByTime(onSuccess,onFailed,userContext); }
TileManagerService.DebugGetLatestCustomed= function(onSuccess,onFailed,userContext) {TileManagerService._staticInstance.DebugGetLatestCustomed(onSuccess,onFailed,userContext); }
TileManagerService.DebugGetByTimeCustomed= function(onSuccess,onFailed,userContext) {TileManagerService._staticInstance.DebugGetByTimeCustomed(onSuccess,onFailed,userContext); }
TileManagerService.HelloWorld= function(onSuccess,onFailed,userContext) {TileManagerService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('GraphTransformer');
if (typeof(GraphTransformer.TileScript) === 'undefined') {
GraphTransformer.TileScript=gtc("GraphTransformer.TileScript");
GraphTransformer.TileScript.registerClass('GraphTransformer.TileScript');
}
