/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.swt.tool; import static java.lang.Math.pow; import static java.lang.Math.sqrt; import java.awt.geom.Point2D; import org.eclipse.swt.graphics.Cursor; import org.eclipse.swt.graphics.Rectangle; import org.geotools.geometry.DirectPosition2D; import org.geotools.geometry.Envelope2D; import org.geotools.swt.event.MapMouseEvent; import org.geotools.swt.utils.CursorManager; import org.geotools.swt.utils.Messages; /** * A zoom-in tool for JMapPane. * <p> * For mouse clicks, the display will be zoomed-in such that the * map centre is the position of the mouse click and the map * width and height are calculated as: * <pre> {@code len = len.old / z} </pre> * where {@code z} is the linear zoom increment (>= 1.0) * <p> * The tool also responds to the user drawing a box on the map mapPane with * mouse click-and-drag to define the zoomed-in area. * * @author Michael Bedward * @author Andrea Antonello (www.hydrologis.com) * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/unsupported/swt/src/main/java/org/geotools/swt/tool/ZoomInTool.java $ */ public class ZoomInTool extends AbstractZoomTool { /** Tool name */ public static final String TOOL_NAME = Messages.getString("tool_name_zoom_in"); /** Tool tip text */ public static final String TOOL_TIP = Messages.getString("tool_tip_zoom_in"); private Cursor cursor; private Point2D startDragPos; private boolean dragged; /** * Constructor */ public ZoomInTool() { cursor = CursorManager.getInstance().getZoominCursor(); startDragPos = new DirectPosition2D(); dragged = false; } /** * Zoom in by the currently set increment, with the map * centred at the location (in world coords) of the mouse * click * * @param e map mapPane mouse event */ @Override public void onMouseClicked( MapMouseEvent e ) { startDragPos = new DirectPosition2D(); startDragPos.setLocation(e.getMapPosition()); } /** * Records the map position of the mouse event in case this * button press is the beginning of a mouse drag * * @param ev the mouse event */ @Override public void onMousePressed( MapMouseEvent ev ) { } /** * Records that the mouse is being dragged * * @param ev the mouse event */ @Override public void onMouseDragged( MapMouseEvent ev ) { dragged = true; } /** * If the mouse was dragged, determines the bounds of the * box that the user defined and passes this to the mapPane's * {@link org.geotools.swing.JMapPane#setDisplayArea(org.opengis.geometry.Envelope) } * method * * @param ev the mouse event */ @Override public void onMouseReleased( MapMouseEvent ev ) { if (dragged) { Envelope2D env = new Envelope2D(); env.setFrameFromDiagonal(startDragPos, ev.getMapPosition()); dragged = false; getMapPane().setDisplayArea(env); } else { Rectangle paneArea = getMapPane().getVisibleRect(); double scale = getMapPane().getWorldToScreenTransform().getScaleX(); double newScale = scale * zoom; DirectPosition2D corner = new DirectPosition2D(startDragPos.getX() - 0.5d * paneArea.width / newScale, startDragPos.getY() + 0.5d * paneArea.height / newScale); Envelope2D newMapArea = new Envelope2D(); newMapArea.setFrameFromCenter(startDragPos, corner); getMapPane().setDisplayArea(newMapArea); } } /** * Get the mouse cursor for this tool */ @Override public Cursor getCursor() { return cursor; } /** * Returns true to indicate that this tool draws a box * on the map display when the mouse is being dragged to * show the zoom-in area */ @Override public boolean drawDragBox() { return true; } public static double pythagoras( double d1, double d2 ) { return sqrt(pow(d1, 2.0) + pow(d2, 2.0)); } }