Type.registerNamespace('GoogleMapService');
GoogleMapService.IGoogleMapService=function() {
GoogleMapService.IGoogleMapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GoogleMapService.IGoogleMapService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return GoogleMapService.IGoogleMapService._staticInstance.get_path();},
GetPositionalData:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetPositionalData',false,{},succeededCallback,failedCallback,userContext); },
GetPositionalDataByKey:function(encodedKey,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetPositionalDataByKey',false,{encodedKey:encodedKey},succeededCallback,failedCallback,userContext); },
GetObjectInformation:function(locationObject,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetObjectInformation',false,{locationObject:locationObject},succeededCallback,failedCallback,userContext); },
UpdateCurrentUserPosition:function(currentUserPositionData,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'UpdateCurrentUserPosition',false,{currentUserPositionData:currentUserPositionData},succeededCallback,failedCallback,userContext); }}
GoogleMapService.IGoogleMapService.registerClass('GoogleMapService.IGoogleMapService',Sys.Net.WebServiceProxy);
GoogleMapService.IGoogleMapService._staticInstance = new GoogleMapService.IGoogleMapService();
GoogleMapService.IGoogleMapService.set_path = function(value) { GoogleMapService.IGoogleMapService._staticInstance.set_path(value); }
GoogleMapService.IGoogleMapService.get_path = function() { return GoogleMapService.IGoogleMapService._staticInstance.get_path(); }
GoogleMapService.IGoogleMapService.set_timeout = function(value) { GoogleMapService.IGoogleMapService._staticInstance.set_timeout(value); }
GoogleMapService.IGoogleMapService.get_timeout = function() { return GoogleMapService.IGoogleMapService._staticInstance.get_timeout(); }
GoogleMapService.IGoogleMapService.set_defaultUserContext = function(value) { GoogleMapService.IGoogleMapService._staticInstance.set_defaultUserContext(value); }
GoogleMapService.IGoogleMapService.get_defaultUserContext = function() { return GoogleMapService.IGoogleMapService._staticInstance.get_defaultUserContext(); }
GoogleMapService.IGoogleMapService.set_defaultSucceededCallback = function(value) { GoogleMapService.IGoogleMapService._staticInstance.set_defaultSucceededCallback(value); }
GoogleMapService.IGoogleMapService.get_defaultSucceededCallback = function() { return GoogleMapService.IGoogleMapService._staticInstance.get_defaultSucceededCallback(); }
GoogleMapService.IGoogleMapService.set_defaultFailedCallback = function(value) { GoogleMapService.IGoogleMapService._staticInstance.set_defaultFailedCallback(value); }
GoogleMapService.IGoogleMapService.get_defaultFailedCallback = function() { return GoogleMapService.IGoogleMapService._staticInstance.get_defaultFailedCallback(); }
GoogleMapService.IGoogleMapService.set_path("/WebServices/GoogleMapService.svc");
GoogleMapService.IGoogleMapService.GetPositionalData= function(onSuccess,onFailed,userContext) {GoogleMapService.IGoogleMapService._staticInstance.GetPositionalData(onSuccess,onFailed,userContext); }
GoogleMapService.IGoogleMapService.GetPositionalDataByKey= function(encodedKey,onSuccess,onFailed,userContext) {GoogleMapService.IGoogleMapService._staticInstance.GetPositionalDataByKey(encodedKey,onSuccess,onFailed,userContext); }
GoogleMapService.IGoogleMapService.GetObjectInformation= function(locationObject,onSuccess,onFailed,userContext) {GoogleMapService.IGoogleMapService._staticInstance.GetObjectInformation(locationObject,onSuccess,onFailed,userContext); }
GoogleMapService.IGoogleMapService.UpdateCurrentUserPosition= function(currentUserPositionData,onSuccess,onFailed,userContext) {GoogleMapService.IGoogleMapService._staticInstance.UpdateCurrentUserPosition(currentUserPositionData,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('RS.Community.Service');
if (typeof(RS.Community.Service.LocationObject) === 'undefined') {
RS.Community.Service.LocationObject=gtc("LocationObject:http://schemas.datacontract.org/2004/07/RS.Community.Service");
RS.Community.Service.LocationObject.registerClass('RS.Community.Service.LocationObject');
}
if (typeof(RS.Community.Service.InformationObject) === 'undefined') {
RS.Community.Service.InformationObject=gtc("InformationObject:http://schemas.datacontract.org/2004/07/RS.Community.Service");
RS.Community.Service.InformationObject.registerClass('RS.Community.Service.InformationObject');
}

