Type.registerNamespace('DRK');
DRK.MapService=function() {
DRK.MapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
DRK.MapService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return DRK.MapService._staticInstance.get_path();},
GetMapPoints:function(datasource,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetMapPoints',false,{datasource:datasource},succeededCallback,failedCallback,userContext); },
GetChunkedMapPoints:function(datasource,receivedSoFar,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetChunkedMapPoints',false,{datasource:datasource,receivedSoFar:receivedSoFar},succeededCallback,failedCallback,userContext); }}
DRK.MapService.registerClass('DRK.MapService',Sys.Net.WebServiceProxy);
DRK.MapService._staticInstance = new DRK.MapService();
DRK.MapService.set_path = function(value) { DRK.MapService._staticInstance.set_path(value); }
DRK.MapService.get_path = function() { return DRK.MapService._staticInstance.get_path(); }
DRK.MapService.set_timeout = function(value) { DRK.MapService._staticInstance.set_timeout(value); }
DRK.MapService.get_timeout = function() { return DRK.MapService._staticInstance.get_timeout(); }
DRK.MapService.set_defaultUserContext = function(value) { DRK.MapService._staticInstance.set_defaultUserContext(value); }
DRK.MapService.get_defaultUserContext = function() { return DRK.MapService._staticInstance.get_defaultUserContext(); }
DRK.MapService.set_defaultSucceededCallback = function(value) { DRK.MapService._staticInstance.set_defaultSucceededCallback(value); }
DRK.MapService.get_defaultSucceededCallback = function() { return DRK.MapService._staticInstance.get_defaultSucceededCallback(); }
DRK.MapService.set_defaultFailedCallback = function(value) { DRK.MapService._staticInstance.set_defaultFailedCallback(value); }
DRK.MapService.get_defaultFailedCallback = function() { return DRK.MapService._staticInstance.get_defaultFailedCallback(); }
DRK.MapService.set_path("/webservices/MapService.asmx");
DRK.MapService.GetMapPoints= function(datasource,onSuccess,onFailed,userContext) {DRK.MapService._staticInstance.GetMapPoints(datasource,onSuccess,onFailed,userContext); }
DRK.MapService.GetChunkedMapPoints= function(datasource,receivedSoFar,onSuccess,onFailed,userContext) {DRK.MapService._staticInstance.GetChunkedMapPoints(datasource,receivedSoFar,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(DRK.DRKKontakt) === 'undefined') {
DRK.DRKKontakt=gtc("DRK.DRKKontakt");
DRK.DRKKontakt.registerClass('DRK.DRKKontakt');
}
if (typeof(DRK.DRKKontaktResult) === 'undefined') {
DRK.DRKKontaktResult=gtc("DRK.DRKKontaktResult");
DRK.DRKKontaktResult.registerClass('DRK.DRKKontaktResult');
}

