var MTMapSrv=function() {
MTMapSrv.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
MTMapSrv.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return MTMapSrv._staticInstance.get_path();},
getMap:function(sessId,x,y,zoom,succeededCallback, failedCallback, userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="x" type="Number">System.Int32</param>
/// <param name="y" type="Number">System.Int32</param>
/// <param name="zoom" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'getMap',true,{sessId:sessId,x:x,y:y,zoom:zoom},succeededCallback,failedCallback,userContext); },
getInitialMap:function(sessId,succeededCallback, failedCallback, userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'getInitialMap',true,{sessId:sessId},succeededCallback,failedCallback,userContext); },
getItiMap:function(sessId,step,succeededCallback, failedCallback, userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="step" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'getItiMap',true,{sessId:sessId,step:step},succeededCallback,failedCallback,userContext); },
getPIMap:function(sessId,row,succeededCallback, failedCallback, userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="row" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'getPIMap',true,{sessId:sessId,row:row},succeededCallback,failedCallback,userContext); }}
MTMapSrv.registerClass('MTMapSrv',Sys.Net.WebServiceProxy);
MTMapSrv._staticInstance = new MTMapSrv();
MTMapSrv.set_path = function(value) {
MTMapSrv._staticInstance.set_path(value); }
MTMapSrv.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return MTMapSrv._staticInstance.get_path();}
MTMapSrv.set_timeout = function(value) {
MTMapSrv._staticInstance.set_timeout(value); }
MTMapSrv.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return MTMapSrv._staticInstance.get_timeout(); }
MTMapSrv.set_defaultUserContext = function(value) { 
MTMapSrv._staticInstance.set_defaultUserContext(value); }
MTMapSrv.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return MTMapSrv._staticInstance.get_defaultUserContext(); }
MTMapSrv.set_defaultSucceededCallback = function(value) { 
 MTMapSrv._staticInstance.set_defaultSucceededCallback(value); }
MTMapSrv.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return MTMapSrv._staticInstance.get_defaultSucceededCallback(); }
MTMapSrv.set_defaultFailedCallback = function(value) { 
MTMapSrv._staticInstance.set_defaultFailedCallback(value); }
MTMapSrv.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return MTMapSrv._staticInstance.get_defaultFailedCallback(); }
MTMapSrv.set_path("/services/MTMapSrv.asmx");
MTMapSrv.getMap= function(sessId,x,y,zoom,onSuccess,onFailed,userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="x" type="Number">System.Int32</param>
/// <param name="y" type="Number">System.Int32</param>
/// <param name="zoom" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
MTMapSrv._staticInstance.getMap(sessId,x,y,zoom,onSuccess,onFailed,userContext); }
MTMapSrv.getInitialMap= function(sessId,onSuccess,onFailed,userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
MTMapSrv._staticInstance.getInitialMap(sessId,onSuccess,onFailed,userContext); }
MTMapSrv.getItiMap= function(sessId,step,onSuccess,onFailed,userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="step" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
MTMapSrv._staticInstance.getItiMap(sessId,step,onSuccess,onFailed,userContext); }
MTMapSrv.getPIMap= function(sessId,row,onSuccess,onFailed,userContext) {
/// <param name="sessId" type="String">System.String</param>
/// <param name="row" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
MTMapSrv._staticInstance.getPIMap(sessId,row,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Yl_ClientWebService.WS_Yl_Map');
if (typeof(Yl_ClientWebService.WS_Yl_Map.MapServResponse) === 'undefined') {
Yl_ClientWebService.WS_Yl_Map.MapServResponse=gtc("Yl_ClientWebService.WS_Yl_Map.MapServResponse");
Yl_ClientWebService.WS_Yl_Map.MapServResponse.registerClass('Yl_ClientWebService.WS_Yl_Map.MapServResponse');
}

