Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.labeling.app / org.gvsig.labeling.app.mainplugin / src / main / java / org / gvsig / labeling / placements / MarkerCenteredAtPoint.java @ 43510

History | View | Annotate | Download (2.65 KB)

1 43510 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40911 jldominguez
 *
4 43510 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5 40911 jldominguez
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 43510 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40911 jldominguez
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18 43510 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20 40911 jldominguez
 *
21 43510 jjdelcerro
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 40911 jldominguez
 */
24
package org.gvsig.labeling.placements;
25
26
import java.awt.geom.Point2D;
27
import java.awt.geom.Rectangle2D;
28
import java.util.ArrayList;
29
30
import org.gvsig.fmap.geom.Geometry;
31
import org.gvsig.fmap.geom.primitive.Point;
32
import org.gvsig.fmap.mapcontext.ViewPort;
33
import org.gvsig.fmap.mapcontext.rendering.legend.styling.ILabelClass;
34
import org.gvsig.fmap.mapcontext.rendering.legend.styling.IPlacementConstraints;
35
import org.gvsig.symbology.fmap.mapcontext.rendering.legend.styling.LabelLocationMetrics;
36
import org.gvsig.tools.task.Cancellable;
37
import org.slf4j.Logger;
38
import org.slf4j.LoggerFactory;
39
40
public class MarkerCenteredAtPoint implements ILabelPlacement {
41
42
        private static Logger logger =
43
                        LoggerFactory.getLogger(MarkerCenteredAtPoint.class);
44
45 43510 jjdelcerro
    @Override
46 40911 jldominguez
        public ArrayList<LabelLocationMetrics> guess(
47
                        ILabelClass lc, Geometry geom,
48
                        IPlacementConstraints placementConstraints,
49
                        double cartographicSymbolSize, Cancellable cancel, ViewPort vp) {
50
51 43510 jjdelcerro
                if (cancel.isCanceled()) {
52
            return CannotPlaceLabel.NO_PLACES;
53
        }
54 40911 jldominguez
55
                Geometry shp = geom.cloneGeometry();
56
                shp.transform(vp.getAffineTransform());
57
58
                ArrayList<LabelLocationMetrics> guessed =
59
                                new ArrayList<LabelLocationMetrics>();
60
61
                Point cen = null;
62
                try {
63
                        cen = shp.centroid();
64
                } catch (Exception e) {
65 43510 jjdelcerro
                        logger.warn("While gentting centroid.", e);
66 40911 jldominguez
                }
67
                Point2D p = new Point2D.Double(cen.getX(), cen.getY());
68
69
                Rectangle2D bounds = lc.getBounds();
70
                p.setLocation(p.getX() - (bounds.getWidth()*0.5), p.getY() - bounds.getHeight()*0.5);
71
                guessed.add(new LabelLocationMetrics(
72
                                p, 0, true));
73
                return guessed;
74
        }
75
76 43510 jjdelcerro
    @Override
77 40911 jldominguez
        public boolean isSuitableFor(IPlacementConstraints placementConstraints,
78
                        int shapeType) {
79
                return false;
80
        }
81
82
83
84
}