var MDSMapPipe=function() {
MDSMapPipe.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MDSMapPipe.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MDSMapPipe._staticInstance.get_path();},
RemoveKey:function(key,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'RemoveKey',false,{key:key},succeededCallback,failedCallback,userContext); },
GetRoute:function(userID,startLat,startLong,endLat,endLong,appType,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetRoute',false,{userID:userID,startLat:startLat,startLong:startLong,endLat:endLat,endLong:endLong,appType:appType},succeededCallback,failedCallback,userContext); },
GetViewByLevelCentreSize:function(userID,latitude,longitude,zoom,imgHeight,imgWidth,arrayindex,routeCollection,callCount,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetViewByLevelCentreSize',false,{userID:userID,latitude:latitude,longitude:longitude,zoom:zoom,imgHeight:imgHeight,imgWidth:imgWidth,arrayindex:arrayindex,routeCollection:routeCollection,callCount:callCount},succeededCallback,failedCallback,userContext); }}
MDSMapPipe.registerClass('MDSMapPipe',Sys.Net.WebServiceProxy);
MDSMapPipe._staticInstance = new MDSMapPipe();
MDSMapPipe.set_path = function(value) { MDSMapPipe._staticInstance.set_path(value); }
MDSMapPipe.get_path = function() { return MDSMapPipe._staticInstance.get_path(); }
MDSMapPipe.set_timeout = function(value) { MDSMapPipe._staticInstance.set_timeout(value); }
MDSMapPipe.get_timeout = function() { return MDSMapPipe._staticInstance.get_timeout(); }
MDSMapPipe.set_defaultUserContext = function(value) { MDSMapPipe._staticInstance.set_defaultUserContext(value); }
MDSMapPipe.get_defaultUserContext = function() { return MDSMapPipe._staticInstance.get_defaultUserContext(); }
MDSMapPipe.set_defaultSucceededCallback = function(value) { MDSMapPipe._staticInstance.set_defaultSucceededCallback(value); }
MDSMapPipe.get_defaultSucceededCallback = function() { return MDSMapPipe._staticInstance.get_defaultSucceededCallback(); }
MDSMapPipe.set_defaultFailedCallback = function(value) { MDSMapPipe._staticInstance.set_defaultFailedCallback(value); }
MDSMapPipe.get_defaultFailedCallback = function() { return MDSMapPipe._staticInstance.get_defaultFailedCallback(); }
MDSMapPipe.set_path("/MitsubishiElectric/locator/MDSMapPipe.asmx");
MDSMapPipe.RemoveKey= function(key,onSuccess,onFailed,userContext) {MDSMapPipe._staticInstance.RemoveKey(key,onSuccess,onFailed,userContext); }
MDSMapPipe.GetRoute= function(userID,startLat,startLong,endLat,endLong,appType,onSuccess,onFailed,userContext) {MDSMapPipe._staticInstance.GetRoute(userID,startLat,startLong,endLat,endLong,appType,onSuccess,onFailed,userContext); }
MDSMapPipe.GetViewByLevelCentreSize= function(userID,latitude,longitude,zoom,imgHeight,imgWidth,arrayindex,routeCollection,callCount,onSuccess,onFailed,userContext) {MDSMapPipe._staticInstance.GetViewByLevelCentreSize(userID,latitude,longitude,zoom,imgHeight,imgWidth,arrayindex,routeCollection,callCount,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('RouteWS');
if (typeof(RouteWS.Route) === 'undefined') {
RouteWS.Route=gtc("RouteWS.Route");
RouteWS.Route.registerClass('RouteWS.Route');
}

