Statistics
| Revision:

root / branches / gvSIG_03_SLD / applications / appgvSIG / src / com / iver / cit / gvsig / gui / toolListeners / AreaListener.java @ 2106

History | View | Annotate | Download (3.46 KB)

1 1103 fjp
/* 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 779 vcaballero
package com.iver.cit.gvsig.gui.toolListeners;
42
43
import java.awt.Point;
44
import java.awt.geom.Point2D;
45 964 vcaballero
import java.text.NumberFormat;
46 779 vcaballero
47
import com.iver.andami.PluginServices;
48 1223 fernando
import com.iver.cit.gvsig.fmap.MapControl;
49 779 vcaballero
import com.iver.cit.gvsig.fmap.ViewPort;
50
import com.iver.cit.gvsig.fmap.tools.AreaListenerImpl;
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 AreaListener extends AreaListenerImpl {
60
        /**
61
     * Crea un nuevo AreaListener.
62
     *
63
     * @param vp DOCUMENT ME!
64
     */
65 1223 fernando
    public AreaListener(MapControl mc) {
66 779 vcaballero
            super(mc);
67
    }
68
69
    /**
70
     * DOCUMENT ME!
71
     *
72
     * @param event DOCUMENT ME!
73
     */
74
    public void points(MeasureEvent event) {
75
        this.event = event;
76
77
        double dist = 0;
78
        double distAll = 0;
79
80
        ViewPort vp = mapCtrl.getMapContext().getViewPort();
81
        for (int i = 0; i < (event.getXs().length - 1); i++) {
82
            dist = 0;
83
84 1150 vcaballero
            Point2D p = vp.toMapPoint(new Point(event.getXs()[i].intValue(),
85
                    event.getYs()[i].intValue()));
86
            Point2D p2 = vp.toMapPoint(new Point(event.getXs()[i + 1].intValue(),
87
                    event.getYs()[i + 1].intValue()));
88 1037 vcaballero
            ///dist = vp.toMapDistance((int) p.distance(p2));
89 1150 vcaballero
            dist = vp.distanceWorld(p,p2);
90
            System.out.println(dist);
91 779 vcaballero
            distAll += dist;
92
        }
93
94 964 vcaballero
       // System.out.println("Per?metro = " + distAll + " ?rea = " +
95
       //     (returnArea(vp.toMapPoint(
96
       //             new Point2D.Double(
97
       //                 event.getXs()[event.getXs().length - 2].doubleValue(),
98
       //                 event.getYs()[event.getYs().length - 2].doubleValue())))));
99
        NumberFormat nf = NumberFormat.getInstance();
100
        nf.setMaximumFractionDigits(2);
101 1140 vcaballero
        PluginServices.getMainFrame().getStatusBar().setMessage("4",
102 1150 vcaballero
                            "P:" + nf.format(distAll) + "");
103 1140 vcaballero
                    PluginServices.getMainFrame().getStatusBar().setMessage("5",
104 1150 vcaballero
                            "A:" + nf.format(returnArea(vp.toMapPoint(
105 779 vcaballero
                        new Point2D.Double(
106
                                event.getXs()[event.getXs().length - 2].doubleValue(),
107
                                event.getYs()[event.getYs().length - 2].doubleValue())))) + "");
108
    }
109
110
111
}