var MyMapService=function() {
MyMapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MyMapService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MyMapService._staticInstance.get_path();},
GetObjects:function(guidVerzameling,guidObject,max,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetObjects',true,{guidVerzameling:guidVerzameling,guidObject:guidObject,max:max},succeededCallback,failedCallback,userContext); },
GetBoundObjects:function(guidVerzameling,guidObject,latSW,lngSW,latNE,lngNE,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetBoundObjects',false,{guidVerzameling:guidVerzameling,guidObject:guidObject,latSW:latSW,lngSW:lngSW,latNE:latNE,lngNE:lngNE},succeededCallback,failedCallback,userContext); }}
MyMapService.registerClass('MyMapService',Sys.Net.WebServiceProxy);
MyMapService._staticInstance = new MyMapService();
MyMapService.set_path = function(value) { MyMapService._staticInstance.set_path(value); }
MyMapService.get_path = function() { return MyMapService._staticInstance.get_path(); }
MyMapService.set_timeout = function(value) { MyMapService._staticInstance.set_timeout(value); }
MyMapService.get_timeout = function() { return MyMapService._staticInstance.get_timeout(); }
MyMapService.set_defaultUserContext = function(value) { MyMapService._staticInstance.set_defaultUserContext(value); }
MyMapService.get_defaultUserContext = function() { return MyMapService._staticInstance.get_defaultUserContext(); }
MyMapService.set_defaultSucceededCallback = function(value) { MyMapService._staticInstance.set_defaultSucceededCallback(value); }
MyMapService.get_defaultSucceededCallback = function() { return MyMapService._staticInstance.get_defaultSucceededCallback(); }
MyMapService.set_defaultFailedCallback = function(value) { MyMapService._staticInstance.set_defaultFailedCallback(value); }
MyMapService.get_defaultFailedCallback = function() { return MyMapService._staticInstance.get_defaultFailedCallback(); }
MyMapService.set_path("/WebService/MyMapService.asmx");
MyMapService.GetObjects= function(guidVerzameling,guidObject,max,onSuccess,onFailed,userContext) {MyMapService._staticInstance.GetObjects(guidVerzameling,guidObject,max,onSuccess,onFailed,userContext); }
MyMapService.GetBoundObjects= function(guidVerzameling,guidObject,latSW,lngSW,latNE,lngNE,onSuccess,onFailed,userContext) {MyMapService._staticInstance.GetBoundObjects(guidVerzameling,guidObject,latSW,lngSW,latNE,lngNE,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(MyMapResponse) === 'undefined') {
var MyMapResponse=gtc("MyMapResponse");
MyMapResponse.registerClass('MyMapResponse');
}
if (typeof(MyMapResponseArea) === 'undefined') {
var MyMapResponseArea=gtc("MyMapResponseArea");
MyMapResponseArea.registerClass('MyMapResponseArea');
}
