⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 navmousemode2.java

📁 openmap java写的开源数字地图程序. 用applet实现,可以像google map 那样放大缩小地图.
💻 JAVA
字号:
// **********************************************************************// // <copyright>// //  BBN Technologies//  10 Moulton Street//  Cambridge, MA 02138//  (617) 873-8000// //  Copyright (C) BBNT Solutions LLC. All rights reserved.// // </copyright>// **********************************************************************// // $Source: /cvs/distapps/openmap/src/openmap/com/bbn/openmap/event/NavMouseMode2.java,v $// $RCSfile: NavMouseMode2.java,v $// $Revision: 1.5.2.3 $// $Date: 2005/08/09 17:38:50 $// $Author: dietrick $// // **********************************************************************package com.bbn.openmap.event;import java.awt.Graphics;import java.awt.Point;import java.awt.event.MouseEvent;import com.bbn.openmap.LatLonPoint;import com.bbn.openmap.MapBean;import com.bbn.openmap.proj.Proj;import com.bbn.openmap.proj.Projection;import com.bbn.openmap.util.Debug;/** * The Navigation Mouse Mode interprets mouse clicks and mouse drags * to recenter and rescale the map. The map is centered on the * location where a click occurs. The difference between this * MouseMode and the original NavMouseMode is that the box drawn is * interpreted differently. The point where the mouse is pressed is * interpreted to be the center of the new zoom area (instead of one * of the corners), and the dragged mouse point is the edge of the * box, reflected equally on the other side of the center point. *  * <p> * You MUST add this MouseMode as a ProjectionListener to the MapBean * to get it to work. If you use a MouseDelegator with the bean, it * will take care of that for you. */public class NavMouseMode2 extends NavMouseMode {    /**     * Construct a NavMouseMode2. Sets the ID of the mode to the     * modeID, the consume mode to true, and the cursor to the     * crosshair.     */    public NavMouseMode2() {        this(true);    }    /**     * Construct a NavMouseMode2. Lets you set the consume mode. If     * the events are consumed, then a MouseEvent is sent only to the     * first MapMouseListener that successfully processes the event.     * If they are not consumed, then all of the listeners get a     * chance to act on the event.     *      * @param shouldConsumeEvents the mode setting.     */    public NavMouseMode2(boolean shouldConsumeEvents) {        super(shouldConsumeEvents);    }    /**     * Handle a mouseReleased MouseListener event. If there was no     * drag events, or if there was only a small amount of dragging     * between the occurence of the mousePressed and this event, then     * recenter the map. Otherwise we get the second corner of the     * navigation rectangle and try to figure out the best scale and     * location to zoom in to based on that rectangle.     *      * @param e MouseEvent to be handled     */    public void mouseReleased(MouseEvent e) {        if (Debug.debugging("mousemode")) {            Debug.output(getID() + "|NavMouseMode2.mouseReleased()");        }        Object obj = e.getSource();        if (!mouseSupport.fireMapMouseReleased(e)) {            if (!(obj instanceof MapBean) || !autoZoom || point1 == null)                return;            MapBean map = (MapBean) obj;            Projection projection = map.getProjection();            Proj p = (Proj) projection;            synchronized (this) {                point2 = e.getPoint();                int dx = Math.abs(point2.x - point1.x);                int dy = Math.abs(point2.y - point1.y);                // Dont bother redrawing if the rectangle is too small                if ((dx < 5) || (dy < 5)) {                    // clean up the rectangle, since point2 has the                    // old value.                    paintRectangle(map, point1, point2);                    // If rectangle is too small in both x and y then                    // recenter the map                    if ((dx < 5) && (dy < 5)) {                        LatLonPoint llp = projection.inverse(e.getPoint());                        boolean shift = e.isShiftDown();                        boolean control = e.isControlDown();                        if (control) {                            if (shift) {                                p.setScale(p.getScale() * 2.0f);                            } else {                                p.setScale(p.getScale() / 2.0f);                            }                        }                        // reset the points here so the point doesn't                        // get rendered on the repaint.                        point1 = null;                        point2 = null;                        p.setCenter(llp);                        map.setProjection(p);                    }                    return;                }                // Figure out the new scale                dx = Math.abs(point2.x - point1.x);                dy = Math.abs(point2.y - point1.y);                // cornerPoint 1 should be the upper left.                Point cornerPoint1 = new Point(point2.x < point1.x ? point2.x                        : point1.x, point2.y < point1.y ? point2.y : point1.y);                Point cornerPoint2 = new Point(cornerPoint1.x + 2 * dx, cornerPoint1.y                        + 2 * dy);                float newScale = com.bbn.openmap.proj.ProjMath.getScale(cornerPoint1,                        cornerPoint2,                        projection);                // Figure out the center of the rectangle                com.bbn.openmap.LatLonPoint center = projection.inverse(point1.x,                        point1.y);                // Set the parameters of the projection and then set                // the projection of the map. This way we save having                // the MapBean fire two ProjectionEvents.                p.setScale(newScale);                p.setCenter(center);                // reset the points so they don't show up in the                // listener paint.                point1 = null;                point2 = null;                map.setProjection(p);            }        }    }    // Mouse Motion Listener events    ///////////////////////////////    /**     * Draws or erases boxes between two screen pixel points. The     * graphics from the map is set to XOR mode, and this method uses     * two colors to make the box disappear if on has been drawn at     * these coordinates, and the box to appear if it hasn't.     *      * @param pt1 one corner of the box to drawn, in window pixel     *        coordinates.     * @param pt2 the opposite corner of the box.     */    protected void paintRectangle(Graphics g, Point pt1, Point pt2) {        g.setXORMode(java.awt.Color.lightGray);        g.setColor(java.awt.Color.darkGray);        if (pt1 != null && pt2 != null) {            int width = Math.abs(pt2.x - pt1.x);            int height = Math.abs(pt2.y - pt1.y);            if (width == 0)                width++;            if (height == 0)                height++;            g.drawRect(pt1.x - width, pt1.y - height, width * 2, height * 2);            g.drawRect(pt1.x - 1, pt1.y - 1, 3, 3);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -