Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / project / documents / view / toolListeners / MeasureListener.java @ 7771

History | View | Annotate | Download (3.07 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
 * DOCUMENT ME!
56
 *
57
 * @author Vicente Caballero Navarro
58
 */
59
public class MeasureListener extends MeasureListenerImpl {
60
        /**
61
         * DOCUMENT ME!
62
         *
63
         * @param mc
64
         */
65
        public MeasureListener(MapControl mc) {
66
                super(mc);
67
        }
68

    
69
        /**
70
         * DOCUMENT ME!
71
         *
72
         * @param event DOCUMENT ME!
73
         */
74
        public void points(MeasureEvent event) {
75
                double dist = 0;
76
                double distAll = 0;
77

    
78
                ViewPort vp = mapCtrl.getMapContext().getViewPort();
79

    
80
                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()));
81
                for (int i = 1; i < (event.getXs().length); i++) {
82
                        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()));
83
                        dist = vp.distanceWorld(p, p2);
84
                        distAll += dist;
85
                        p = p2;
86
                }
87

    
88
                //System.out.println("Distancia = " + dist + " Distancia Total = " +
89
                //        (distAll));
90
                NumberFormat nf = NumberFormat.getInstance();
91
        nf.setMaximumFractionDigits(2);
92
        if (PluginServices.getMainFrame() != null)
93
        {
94
            PluginServices.getMainFrame().getStatusBar().setMessage("4",
95
                            "Dist:" + nf.format(dist/MapContext.CHANGEM[mapCtrl.getViewPort().getDistanceUnits()]) + "");
96
                    PluginServices.getMainFrame().getStatusBar().setMessage("5",
97
                            "Total:" + nf.format(distAll/MapContext.CHANGEM[mapCtrl.getViewPort().getDistanceUnits()]) + "");
98
        }
99
        }
100
}