Examples of PanTool


Examples of chunmap.app.tools.navigate.PanTool

  public OperateManager(MapCtrl mapBox,Component component) {
    plugs = new ArrayList<Tool>();
    this.mapBox = mapBox;
    commandManager=new CommandStack();
    addPlug(new PanTool());
    addPlug(new ZoomTool());
   
    ComponentUtils.bindEvent(this, component);
  }
View Full Code Here

Examples of org.geotools.swing.tool.PanTool

     * map pane's cursor tool being set to a PanTool object
     *
     * @param ev the event (not used)
     */
    public void actionPerformed(ActionEvent ev) {
        getMapPane().setCursorTool(new PanTool());
    }
View Full Code Here

Examples of org.geotools.swt.tool.PanTool

    public PanAction() {
        super(PanTool.TOOL_NAME + "@P", PanTool.TOOL_TIP, ImageCache.getInstance().getImage(ImageCache.IMAGE_PAN));
    }

    public void run() {
        getMapPane().setCursorTool(new PanTool());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.