var PushpinService=function() {
PushpinService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PushpinService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PushpinService._staticInstance.get_path();},
LoadingGetPushpins:function(strLat,strLong,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoadingGetPushpins',false,{strLat:strLat,strLong:strLong},succeededCallback,failedCallback,userContext); },
GetPushpins:function(Zoom,ctrLat,ctrLong,lowLAT,highLAT,lowLONG,highLONG,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetPushpins',false,{Zoom:Zoom,ctrLat:ctrLat,ctrLong:ctrLong,lowLAT:lowLAT,highLAT:highLAT,lowLONG:lowLONG,highLONG:highLONG},succeededCallback,failedCallback,userContext); }}
PushpinService.registerClass('PushpinService',Sys.Net.WebServiceProxy);
PushpinService._staticInstance = new PushpinService();
PushpinService.set_path = function(value) { PushpinService._staticInstance.set_path(value); }
PushpinService.get_path = function() { return PushpinService._staticInstance.get_path(); }
PushpinService.set_timeout = function(value) { PushpinService._staticInstance.set_timeout(value); }
PushpinService.get_timeout = function() { return PushpinService._staticInstance.get_timeout(); }
PushpinService.set_defaultUserContext = function(value) { PushpinService._staticInstance.set_defaultUserContext(value); }
PushpinService.get_defaultUserContext = function() { return PushpinService._staticInstance.get_defaultUserContext(); }
PushpinService.set_defaultSucceededCallback = function(value) { PushpinService._staticInstance.set_defaultSucceededCallback(value); }
PushpinService.get_defaultSucceededCallback = function() { return PushpinService._staticInstance.get_defaultSucceededCallback(); }
PushpinService.set_defaultFailedCallback = function(value) { PushpinService._staticInstance.set_defaultFailedCallback(value); }
PushpinService.get_defaultFailedCallback = function() { return PushpinService._staticInstance.get_defaultFailedCallback(); }
PushpinService.set_path("/PushpinService.asmx");
PushpinService.LoadingGetPushpins= function(strLat,strLong,onSuccess,onFailed,userContext) {PushpinService._staticInstance.LoadingGetPushpins(strLat,strLong,onSuccess,onFailed,userContext); }
PushpinService.GetPushpins= function(Zoom,ctrLat,ctrLong,lowLAT,highLAT,lowLONG,highLONG,onSuccess,onFailed,userContext) {PushpinService._staticInstance.GetPushpins(Zoom,ctrLat,ctrLong,lowLAT,highLAT,lowLONG,highLONG,onSuccess,onFailed,userContext); }
