\n'); } var ZoomC=0; function Control(command,args){ var mapaObj = InternetExplorer ? mapa : document.mapa; var incremento1= InternetExplorer ? 20 : 60; var incremento2= InternetExplorer ? 20 : 95; if (command=="ZoomIn"){ mapaObj.Zoom(50); ZoomC+=(1); } if ((command=="ZoomOut") && (ZoomC!=0)){ mapaObj.Zoom(200); ZoomC-=1; } if (command=="Pan" & ZoomC>0){ if (args=="up" || args=="down"){ xmove=incremento1; if (args=="up"){ xmove=-incremento1; } ymove=0; } if (args=="left" || args=="right"){ ymove=incremento2; if (args=="left"){ ymove=-incremento2; } xmove=0; } mapaObj.Pan(ymove,xmove,1); } }