Type.registerNamespace('vdot.map');
vdot.map.MapService=function() {
vdot.map.MapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
vdot.map.MapService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return vdot.map.MapService._staticInstance.get_path();},
GetClusteredMapData:function(encodedBounds,zoomLevel,strFilters,eventDate,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetClusteredMapData',false,{encodedBounds:encodedBounds,zoomLevel:zoomLevel,strFilters:strFilters,eventDate:eventDate},succeededCallback,failedCallback,userContext); },
GetPushPin:function(encodedBounds,startIndex,strFilters,eventDate,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetPushPin',false,{encodedBounds:encodedBounds,startIndex:startIndex,strFilters:strFilters,eventDate:eventDate},succeededCallback,failedCallback,userContext); },
GetCameraByWebID:function(webid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCameraByWebID',false,{webid:webid},succeededCallback,failedCallback,userContext); },
GetGeorssCameras:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetGeorssCameras',false,{},succeededCallback,failedCallback,userContext); }}
vdot.map.MapService.registerClass('vdot.map.MapService',Sys.Net.WebServiceProxy);
vdot.map.MapService._staticInstance = new vdot.map.MapService();
vdot.map.MapService.set_path = function(value) { vdot.map.MapService._staticInstance.set_path(value); }
vdot.map.MapService.get_path = function() { return vdot.map.MapService._staticInstance.get_path(); }
vdot.map.MapService.set_timeout = function(value) { vdot.map.MapService._staticInstance.set_timeout(value); }
vdot.map.MapService.get_timeout = function() { return vdot.map.MapService._staticInstance.get_timeout(); }
vdot.map.MapService.set_defaultUserContext = function(value) { vdot.map.MapService._staticInstance.set_defaultUserContext(value); }
vdot.map.MapService.get_defaultUserContext = function() { return vdot.map.MapService._staticInstance.get_defaultUserContext(); }
vdot.map.MapService.set_defaultSucceededCallback = function(value) { vdot.map.MapService._staticInstance.set_defaultSucceededCallback(value); }
vdot.map.MapService.get_defaultSucceededCallback = function() { return vdot.map.MapService._staticInstance.get_defaultSucceededCallback(); }
vdot.map.MapService.set_defaultFailedCallback = function(value) { vdot.map.MapService._staticInstance.set_defaultFailedCallback(value); }
vdot.map.MapService.get_defaultFailedCallback = function() { return vdot.map.MapService._staticInstance.get_defaultFailedCallback(); }
vdot.map.MapService.set_path("/webServices/MapService.asmx");
vdot.map.MapService.GetClusteredMapData= function(encodedBounds,zoomLevel,strFilters,eventDate,onSuccess,onFailed,userContext) {vdot.map.MapService._staticInstance.GetClusteredMapData(encodedBounds,zoomLevel,strFilters,eventDate,onSuccess,onFailed,userContext); }
vdot.map.MapService.GetPushPin= function(encodedBounds,startIndex,strFilters,eventDate,onSuccess,onFailed,userContext) {vdot.map.MapService._staticInstance.GetPushPin(encodedBounds,startIndex,strFilters,eventDate,onSuccess,onFailed,userContext); }
vdot.map.MapService.GetCameraByWebID= function(webid,onSuccess,onFailed,userContext) {vdot.map.MapService._staticInstance.GetCameraByWebID(webid,onSuccess,onFailed,userContext); }
vdot.map.MapService.GetGeorssCameras= function(onSuccess,onFailed,userContext) {vdot.map.MapService._staticInstance.GetGeorssCameras(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(vdot.map.PinData) === 'undefined') {
vdot.map.PinData=gtc("vdot.map.PinData");
vdot.map.PinData.registerClass('vdot.map.PinData');
}

