Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / applications / appgvSIG / src / com / iver / cit / gvsig / project / documents / view / toolListeners / MeasureListener.java @ 20100

History | View | Annotate | Download (3.7 KB)

1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package com.iver.cit.gvsig.project.documents.view.toolListeners;
42

    
43
import java.awt.geom.Point2D;
44
import java.text.NumberFormat;
45

    
46
import com.iver.andami.PluginServices;
47
import com.iver.cit.gvsig.fmap.MapContext;
48
import com.iver.cit.gvsig.fmap.MapControl;
49
import com.iver.cit.gvsig.fmap.ViewPort;
50
import com.iver.cit.gvsig.fmap.tools.MeasureListenerImpl;
51
import com.iver.cit.gvsig.fmap.tools.Events.MeasureEvent;
52

    
53

    
54
/**
55
 * <p>Listener for calculating distances using vertexes of a polyline, defined in the associated {@link MapControl MapControl}
56
 *  object, and displaying that information at the status bar of the application's main frame.</p>
57
 *  
58
 * <p>Calculates and displays:
59
 *  <ul>
60
 *   <li>Distance of the last segment of the polyline.</li>
61
 *   <li>Accumulated distance of all segments of the polyline.</li>
62
 *  </ul>
63
 * </p>
64
 *
65
 * @see MeasureListenerImpl
66
 *
67
 * @author Vicente Caballero Navarro
68
 */
69
public class MeasureListener extends MeasureListenerImpl {
70
        /**
71
         * <p>Creates a new listener for calculating distances using points of a polyline.</p>
72
         *
73
         * @param mc the <code>MapControl</code> where is calculated the length
74
         */
75
        public MeasureListener(MapControl mc) {
76
                super(mc);
77
        }
78

    
79
        /*
80
         * (non-Javadoc)
81
         * @see com.iver.cit.gvsig.fmap.tools.MeasureListenerImpl#points(com.iver.cit.gvsig.fmap.tools.Events.MeasureEvent)
82
         */
83
        public void points(MeasureEvent event) {
84
                double dist = 0;
85
                double distAll = 0;
86

    
87
                ViewPort vp = mapCtrl.getMapContext().getViewPort();
88

    
89
                Point2D p = new Point2D.Double(event.getXs()[0].doubleValue(),event.getYs()[0].doubleValue());//vp.toMapPoint(new Point(event.getXs()[0].intValue(),event.getYs()[0].intValue()));
90
                for (int i = 1; i < (event.getXs().length); i++) {
91
                        Point2D p2 = new Point2D.Double(event.getXs()[i].doubleValue(),        event.getYs()[i].doubleValue());// vp.toMapPoint(new Point(event.getXs()[i].intValue(),event.getYs()[i].intValue()));
92
                        dist = vp.distanceWorld(p, p2);
93
                        distAll += dist;
94
                        p = p2;
95
                }
96

    
97
                //System.out.println("Distancia = " + dist + " Distancia Total = " +
98
                //        (distAll));
99
                NumberFormat nf = NumberFormat.getInstance();
100
        nf.setMaximumFractionDigits(2);
101
        if (PluginServices.getMainFrame() != null)
102
        {
103
            PluginServices.getMainFrame().getStatusBar().setMessage("4",
104
                            "Dist:" + nf.format(dist/MapContext.CHANGEM[mapCtrl.getViewPort().getDistanceUnits()]) + "");
105
                    PluginServices.getMainFrame().getStatusBar().setMessage("5",
106
                            "Total:" + nf.format(distAll/MapContext.CHANGEM[mapCtrl.getViewPort().getDistanceUnits()]) + "");
107
        }
108
        }
109
}