Package chunmap.app.command

Examples of chunmap.app.command.ZoomCommand


        if (e.getWheelRotation()== 0) return;

        double s = (e.getWheelRotation() < 0) ? 2 : 0.5;

        ZoomCommand cmd = new ZoomCommand(map, s, x, y);
        map.executeCommand(cmd);
        map.refreshMap();
  }
View Full Code Here

TOP

Related Classes of chunmap.app.command.ZoomCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.