if(typeof (Sys)!=="undefined"){
Type.registerNamespace("AspMap");
}else{
eval("var AspMap = {};");
}
AspMap.find=function(_1){
try{
return eval("_"+_1+"obj");
}
catch(ex){
}
return null;
};
AspMap.Map=function(){
this._map=null;
};
AspMap.Map.prototype={get_zoomLevel:function(){
return this._map.GetZoom();
},set_zoomLevel:function(_2){
this._map.SetZoom(_2);
},get_zoomLevelCount:function(){
return this._map.GetZoomLevelCount();
},get_mapScale:function(){
return this._map.GetMapScale();
},set_mapScale:function(_3){
this._map.SetMapScale(_3);
},get_cursor:function(){
return this._map.GetCursor();
},set_cursor:function(_4){
this._map.SetCursor(_4);
},get_mapTool:function(){
return this._map.GetTool();
},set_mapTool:function(_5){
this._map.SetTool(_5);
},get_mapToolArgument:function(){
return this._map.GetArgument();
},set_mapToolArgument:function(_6){
this._map.SetArgument(_6);
},get_enableAnimation:function(){
return this._map.GetEnableAnimation();
},set_enableAnimation:function(_7){
this._map.SetEnableAnimation(_7);
},get_animationInterval:function(){
return this._map.GetAnimationInterval();
},set_animationInterval:function(_8){
this._map.SetAnimationInterval(_8);
},pan:function(_9,_a){
this._map.Pan(_9,_a);
},centerAt:function(_b){
this._map.CenterAt(_b.x,_b.y);
},centerAndZoom:function(_c,_d){
this._map.CenterAndZoom(_c.x,_c.y,_d);
},centerAndScale:function(_e,_f){
this._map.CenterAndScale(_e.x,_e.y,_f);
},zoomIn:function(){
this._map.ZoomIn();
},zoomOut:function(){
this._map.ZoomOut();
},zoomFull:function(){
this._map.ZoomFull();
},refresh:function(){
this._map.Refresh();
},refreshAnimationLayer:function(){
this._map.RefreshAnimationLayer();
},add_mouseMove:function(_10){
this._map.Add_MouseMove(_10);
},remove_mouseMove:function(_11){
this._map.Remove_MouseMove(_11);
}};
AspMap.Point=function(x,y){
this.x=0;
this.y=0;
if(typeof (x)!=="undefined"){
this.x=x;
}
if(typeof (y)!=="undefined"){
this.y=y;
}
};
AspMap.MouseEventArgs=function(){
this.x=0;
this.y=0;
this.longitude=0;
this.latitude=0;
this.isInside=false;
};
AspMap.MapTool=function(){
};
AspMap.MapTool.prototype={ZoomIn:1,ZoomOut:2,Center:3,Pan:4,Info:5,Distance:6,InfoWindow:7,Point:8,Line:9,Polyline:10,Rectangle:11,Circle:12,Polygon:13};
if(typeof (Sys)!=="undefined"){
AspMap.Map.registerClass("AspMap.Map");
AspMap.Point.registerClass("AspMap.Point");
AspMap.MouseEventArgs.registerClass("AspMap.MouseEventArgs");
AspMap.MapTool.registerEnum("AspMap.MapTool");
}else{
for(var i in AspMap.MapTool.prototype){
AspMap.MapTool[i]=AspMap.MapTool.prototype[i];
}
}

