/[schmitzm]/trunk/src/skrueger/geotools/XMapPane.java
ViewVC logotype

Diff of /trunk/src/skrueger/geotools/XMapPane.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/src/org/geotools/gui/swing/JMapPane.java revision 207 by alfonx, Thu Jul 9 20:14:21 2009 UTC branches/2.0-RC1/src/skrueger/geotools/XMapPane.java revision 613 by alfonx, Sat Dec 12 18:26:15 2009 UTC
# Line 1  Line 1 
1  /*  package skrueger.geotools;
  *    GeoTools - OpenSource mapping toolkit  
  *    http://geotools.org  
  *    (C) 2002-2006, GeoTools Project Managment Committee (PMC)  
  *  
  *    This library is free software; you can redistribute it and/or  
  *    modify it under the terms of the GNU Lesser General Public  
  *    License as published by the Free Software Foundation;  
  *    version 2.1 of the License.  
  *  
  *    This library is distributed in the hope that it will be useful,  
  *    but WITHOUT ANY WARRANTY; without even the implied warranty of  
  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  
  *    Lesser General Public License for more details.  
  */  
 package org.geotools.gui.swing;  
   
 /**  
  * <b>Xulu:<br>  
  *    Code taken from gt-2.4.5 to make some changes (marked with {@code xulu}),  
  *    which can not be realized in a subclass:</b>  
  *    <ul>  
  *       <li>{@link #getMapArea()} declared as {@code final}<li>  
  *       <li>some variables declared as {@code protected}</li>  
  *       <li>minimal/maximal zoom scale</li>  
  *       <li>zoom in and zoom out via mouse click realized by setMapArea(..)</li>  
  *    </ul>  
  * <br><br>  
  * A simple map container that is a JPanel with a map in. provides simple  
  * pan,zoom, highlight and selection The mappane stores an image of the map  
  * (drawn from the context) and an image of the slected feature(s) to speed up  
  * rendering of the highlights. Thus the whole map is only redrawn when the bbox  
  * changes, selection is only redrawn when the selected feature changes.  
  *  
  *  
  * @author Ian Turton  
  *  
  */  
2    
3  import java.awt.Color;  import java.awt.Color;
4  import java.awt.Cursor;  import java.awt.Cursor;
5    import java.awt.Font;
6  import java.awt.Graphics;  import java.awt.Graphics;
7  import java.awt.Graphics2D;  import java.awt.Graphics2D;
8  import java.awt.LayoutManager;  import java.awt.Image;
9    import java.awt.Point;
10  import java.awt.Rectangle;  import java.awt.Rectangle;
11    import java.awt.RenderingHints;
12    import java.awt.event.ActionEvent;
13    import java.awt.event.ActionListener;
14    import java.awt.event.ComponentAdapter;
15    import java.awt.event.ComponentEvent;
16  import java.awt.event.InputEvent;  import java.awt.event.InputEvent;
17  import java.awt.event.MouseEvent;  import java.awt.event.MouseEvent;
18  import java.awt.event.MouseListener;  import java.awt.event.MouseListener;
19  import java.awt.event.MouseMotionListener;  import java.awt.geom.AffineTransform;
20    import java.awt.geom.NoninvertibleTransformException;
21    import java.awt.geom.Point2D;
22  import java.awt.image.BufferedImage;  import java.awt.image.BufferedImage;
 import java.beans.PropertyChangeEvent;  
 import java.beans.PropertyChangeListener;  
23  import java.io.IOException;  import java.io.IOException;
24  import java.util.Date;  import java.util.ArrayList;
25  import java.util.HashMap;  import java.util.HashMap;
26  import java.util.Map;  import java.util.Map;
27    import java.util.Vector;
28    
29  import javax.swing.JPanel;  import javax.swing.JList;
30    import javax.swing.Timer;
31    import javax.swing.border.Border;
32    
33  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
34    import org.geotools.factory.GeoTools;
35  import org.geotools.feature.FeatureCollection;  import org.geotools.feature.FeatureCollection;
36  import org.geotools.filter.IllegalFilterException;  import org.geotools.geometry.DirectPosition2D;
37  import org.geotools.gui.swing.event.HighlightChangeListener;  import org.geotools.geometry.jts.JTS;
38  import org.geotools.gui.swing.event.HighlightChangedEvent;  import org.geotools.geometry.jts.ReferencedEnvelope;
 import org.geotools.gui.swing.event.SelectionChangeListener;  
 import org.geotools.gui.swing.event.SelectionChangedEvent;  
39  import org.geotools.map.DefaultMapContext;  import org.geotools.map.DefaultMapContext;
40  import org.geotools.map.MapContext;  import org.geotools.map.MapContext;
41  import org.geotools.map.MapLayer;  import org.geotools.map.MapLayer;
42    import org.geotools.map.event.MapLayerEvent;
43  import org.geotools.map.event.MapLayerListEvent;  import org.geotools.map.event.MapLayerListEvent;
44  import org.geotools.map.event.MapLayerListListener;  import org.geotools.map.event.MapLayerListListener;
45  import org.geotools.referencing.crs.DefaultGeographicCRS;  import org.geotools.map.event.MapLayerListener;
46    import org.geotools.referencing.CRS;
47  import org.geotools.renderer.GTRenderer;  import org.geotools.renderer.GTRenderer;
48    import org.geotools.renderer.label.LabelCacheImpl;
49  import org.geotools.renderer.lite.LabelCache;  import org.geotools.renderer.lite.LabelCache;
50  import org.geotools.renderer.lite.LabelCacheDefault;  import org.geotools.renderer.lite.RendererUtilities;
51  import org.geotools.renderer.lite.StreamingRenderer;  import org.geotools.renderer.lite.StreamingRenderer;
52  import org.geotools.styling.Graphic;  import org.geotools.swing.JMapPane;
53  import org.geotools.styling.LineSymbolizer;  import org.geotools.swing.event.MapMouseEvent;
54  import org.geotools.styling.Mark;  import org.geotools.swing.event.MapPaneEvent;
55  import org.geotools.styling.PointSymbolizer;  import org.geotools.swing.event.MapPaneListener;
56  import org.geotools.styling.PolygonSymbolizer;  import org.opengis.feature.simple.SimpleFeature;
57  import org.geotools.styling.Style;  import org.opengis.feature.simple.SimpleFeatureType;
58  import org.geotools.styling.StyleBuilder;  import org.opengis.referencing.FactoryException;
 import org.geotools.styling.StyleFactory;  
 import org.opengis.filter.Filter;  
 import org.opengis.filter.FilterFactory2;  
59  import org.opengis.referencing.crs.CoordinateReferenceSystem;  import org.opengis.referencing.crs.CoordinateReferenceSystem;
60    import org.opengis.referencing.operation.MathTransform;
61    import org.opengis.referencing.operation.TransformException;
62    
63    import schmitzm.geotools.GTUtil;
64    import schmitzm.geotools.JTSUtil;
65    import schmitzm.geotools.gui.SelectableXMapPane;
66    import schmitzm.geotools.io.GeoImportUtil;
67    import schmitzm.geotools.map.event.JMapPaneListener;
68    import schmitzm.geotools.map.event.MapLayerAdapter;
69    import schmitzm.lang.LangUtil;
70    import schmitzm.swing.JPanel;
71  import schmitzm.swing.SwingUtil;  import schmitzm.swing.SwingUtil;
72    
73  import com.vividsolutions.jts.geom.Coordinate;  import com.vividsolutions.jts.geom.Coordinate;
74  import com.vividsolutions.jts.geom.Envelope;  import com.vividsolutions.jts.geom.Envelope;
75  import com.vividsolutions.jts.geom.Geometry;  import com.vividsolutions.jts.geom.Geometry;
 import com.vividsolutions.jts.geom.GeometryFactory;  
76    
77  public class JMapPane extends JPanel implements MouseListener,  /**
78                  MouseMotionListener, HighlightChangeListener, SelectionChangeListener,   * The {@link XMapPane} class uses a Geotools {@link GTRenderer} to paint up to
79                  PropertyChangeListener, MapLayerListListener {   * two {@link MapContext}s: a "local" {@link MapContext} and a "background"
80          private static Logger LOGGER = Logger.getLogger(JMapPane.class.getName());   * {@link MapContext}. The idea is, that rendering a background layer made up of
81     * e.g. OSM data, may take much longer than rendering local data.<br>
82     * Every {@link MapContext} is rendered on a {@link Thread} of it's own.
83     * Starting/ cancelling these threads is done by the {@link RenderingExecutor}.<br>
84     * <br>
85     * While the renderers are rending the map, a <br>
86     * The {@link XMapPane} is based on schmitzm {@link JPanel}, so
87     * {@link #print(Graphics)} will automatically set the background of components
88     * to pure white.
89     *
90     * The XMapPane has a {@link MouseListener} that manages zooming.<br>
91     * A logo/icon to float in the lower left corner may be set with
92     * {@link #setMapImage(BufferedImage)}<br>
93     *
94     * @see SelectableXMapPane - an extension of {@link XMapPane} that supports
95     *      selecting features.
96     *
97     * @author stefan
98     *
99     */
100    public class XMapPane extends JPanel {
101    
102          private static final long serialVersionUID = -8647971481359690499L;          // private static final int IMAGETYPE = BufferedImage.TYPE_INT_RGB;
103            // private static final int IMAGETYPE_withAlpha =
104            // BufferedImage.TYPE_INT_ARGB;
105            private static final int IMAGETYPE = BufferedImage.TYPE_3BYTE_BGR;
106            private static final int IMAGETYPE_withAlpha = BufferedImage.TYPE_4BYTE_ABGR;
107    
108          public static final int Reset = 0;          private final static Logger LOGGER = Logger.getLogger(XMapPane.class);
109    
110          public static final int ZoomIn = 1;          private boolean acceptsRepaintCalls = true;
111    
112          public static final int ZoomOut = 2;          /**
113             * Main {@link MapContext} that holds all layers that are rendered into the
114             * {@link #localImage} by the {@link #localRenderer}
115             */
116            MapContext localContext;
117    
118          public static final int Pan = 3;          /**
119             * {@link MapContext} holding the background layers. Use it for layers that
120             * CAN take very long for rendering, like layer from the Internet: WMS, WFS,
121             * OSM...<br>
122             * <code>null</code> by default.
123             *
124             * @see #setBgContext(MapContext)
125             * @see #getBgContext()
126             */
127            MapContext bgContext;
128    
129          public static final int Select = 4;          /**
130             * While threads are working, calls {@link XMapPane#updateFinalImage()}
131             * regularly and {@link #repaint()}. This {@link Timer} is stopped when all
132             * renderers have finished.
133             *
134             * @see INITIAL_REPAINT_DELAYAL
135             * @see #REPEATING_REPAINT_DELAY
136             */
137            final private Timer repaintTimer;
138    
139          private static final int POLYGON = 0;          /**
140             * The initial delay in milliseconds until the {@link #finalImage} is
141             * updated the first time.
142             */
143            public static final int INITIAL_REPAINT_DELAY = 900;
144    
145          private static final int LINE = 1;          /**
146             * While the {@link #bgExecuter} and {@link #localExecuter} are rendering,
147             * the {@link #repaintTimer} is regularly updating the {@link #finalImage}
148             * with previews.
149             */
150            public static final int REPEATING_REPAINT_DELAY = 500;
151    
152          private static final int POINT = 2;          /**
153             * Default delay (milliseconds) before the map will be redrawn when resizing
154             * the pane. This is to avoid flickering while drag-resizing.
155             *
156             * @see #resizeTimer
157             */
158            public static final int DEFAULT_RESIZING_PAINT_DELAY = 600;
159    
160          /**          /**
161           * what renders the map           * This not-repeating {@link Timer} is re-started whenever the component is
162             * resized. That means => only if the component is not resizing for
163             * {@link #DEFAULT_RESIZING_PAINT_DELAY} milliseconds, does the
164             * {@link XMapPane} react.
165           */           */
166          GTRenderer renderer;          private final Timer resizeTimer;
167    
168          private GTRenderer highlightRenderer, selectionRenderer;          /**
169             * Flag for no-tool.
170             */
171            public static final int NONE = -123;
172    
173          /**          /**
174           * the map context to render           * Flag fuer Modus "Kartenausschnitt bewegen". Nicht fuer Window-Auswahl
175             * moeglich!
176             *
177             * @see #setState(int)
178           */           */
179          MapContext context;          public static final int PAN = 1;
180    
181          private MapContext selectionContext;          /**
182             * Flag fuer Modus "Heran zoomen".
183             *
184             * @see #setState(int)
185             * @see #setState(int)
186             */
187            public static final int ZOOM_IN = 2;
188    
189          /**          /**
190           * the area of the map to draw           * Flag fuer Modus "Heraus zoomen". Nicht fuer Window-Auswahl moeglich!
191             *
192             * @see #setState(int)
193           */           */
194          // xulu.sc          public static final int ZOOM_OUT = 3;
         // Envelope mapArea;  
         protected Envelope mapArea;  
         // xulu.ec  
195    
196          /**          /**
197           * the size of the pane last time we drew           * Flag fuer Modus "SimpleFeature-Auswahl auf allen (sichtbaren) Layern".
198             *
199             * @see #setState(int)
200             * @see #setState(int)
201             */
202            public static final int SELECT_ALL = 103;
203            /**
204             * Flag fuer Modus
205             * "Auswahl nur eines Features, das erste sichtbare von Oben".
206             *
207             * @see #setState(int)
208             * @see #setState(int)
209             */
210            public static final int SELECT_ONE_FROM_TOP = 104;
211            /**
212             * Flag fuer Modus
213             * "SimpleFeature-Auswahl auf dem obersten (sichtbaren) Layer".
214             *
215             * @see #setState(int)
216             * @see #setState(int)
217           */           */
218          // xulu.sc          public static final int SELECT_TOP = 4;
         // private Rectangle oldRect = null;  
         protected Rectangle oldRect = null;  
         // xulu.ec  
219    
220          /**          /**
221           * the last map area drawn.           * {@link Font} used to paint the wait messages into the map
222             *
223             * @see #addGadgets(Graphics2D, boolean)
224           */           */
225          // xulu.sc          final static Font waitFont = new Font("Arial", Font.BOLD, 28);
         // private Envelope oldMapArea = null;  
         protected Envelope oldMapArea = null;  
         // xulu.ec  
226    
227          /**          /**
228           * the base image of the map           * {@link Font} used to paint error messages into the map
229             *
230             * @see #addGadgets(Graphics2D, boolean)
231           */           */
232          protected BufferedImage baseImage, panningImage;          final static Font errorFont = new Font("Arial", Font.BOLD, 13);
         // SK: private BufferedImage baseImage, panningImage;  
233    
234          /**          /**
235           * image of selection           * If last average last two renderings took more than that many ms, show the
236             * user a scaled preview
237             **/
238            private static final long PRESCALE_MINTIME = 230;
239    
240            /**
241             * The wait message painted into the map while rendering is going on on
242             * another thread.
243             *
244             * @see #addGadgets(Graphics2D, boolean)
245           */           */
246          private BufferedImage selectImage;          final String waitMsg = SwingUtil.R("WaitMess");
247    
248          /**          /**
249           * style for selected items           * Konvertiert die Maus-Koordinaten (relativ zum <code>JMapPane</code>) in
250             * Karten-Koordinaten.
251             *
252             * @param e
253             *            Maus-Ereignis
254           */           */
255          private Style selectionStyle;          public static DirectPosition2D getMapCoordinatesFromEvent(final MouseEvent e) {
256                    // aktuelle Geo-Position aus GeoMouseEvent ermitteln
257                    if (e != null && e instanceof MapMouseEvent)
258                            try {
259                                    return ((MapMouseEvent) e).getMapPosition();
260                            } catch (final Exception err) {
261                                    LOGGER
262                                                    .error(
263                                                                    "return ((GeoMouseEvent) e).getMapCoordinate(null).toPoint2D();",
264                                                                    err);
265                            }
266    
267                    // aktuelle Geo-Position ueber Transformation des JMapPane berechnen
268                    if (e != null && e.getSource() instanceof XMapPane) {
269    
270                            final XMapPane xMapPane = (XMapPane) e.getSource();
271    
272                            if (!xMapPane.isWellDefined())
273                                    return null;
274    
275                            final AffineTransform at = xMapPane.getScreenToWorld();
276                            if (at != null) {
277                                    Point2D transformed = at.transform(e.getPoint(), null);
278                                    return new DirectPosition2D(xMapPane.getMapContext().getCoordinateReferenceSystem(), transformed.getX(), transformed.getY());
279                            }
280                            return null;
281                    }
282                    throw new IllegalArgumentException(
283                                    "MouseEvent has to be of instance MapMouseEvent or come from an XMapPane");
284            }
285            
286    
287    
288          /**          /**
289           * layer that selection works on           * Listens to changes of the "background" {@link MapContext} and triggers
290             * repaints where needed.
291           */           */
292          private MapLayer selectionLayer;          private final MapLayerListListener bgContextListener = new MapLayerListListener() {
293    
294                    @Override
295                    public void layerAdded(final MapLayerListEvent event) {
296                            final MapLayer layer = event.getLayer();
297                            layer.addMapLayerListener(bgMapLayerListener);
298                            requestStartRendering();
299    
300                    }
301    
302                    @Override
303                    public void layerChanged(final MapLayerListEvent event) {
304                            requestStartRendering();
305                    }
306    
307                    @Override
308                    public void layerMoved(final MapLayerListEvent event) {
309                            requestStartRendering();
310                    }
311    
312                    @Override
313                    public void layerRemoved(final MapLayerListEvent event) {
314                            if (event.getLayer() != null)
315                                    event.getLayer().removeMapLayerListener(bgMapLayerListener);
316                            requestStartRendering();
317                    }
318            };
319    
320          /**          /**
321           * layer that highlight works on           * This {@link RenderingExecutor} manages the creation and cancellation of
322             * up to one {@link Thread} for rendering the {@link #localContext}.
323           */           */
324          private MapLayer highlightLayer;          private final RenderingExecutor localExecuter = new RenderingExecutor(this);
325    
326          /**          /**
327           * the object which manages highlighting           * This {@link RenderingExecutor} manages the creation and cancellation of
328             * up to one {@link Thread} for rendering the {@link #bgContext}.
329           */           */
330          private HighlightManager highlightManager;          protected RenderingExecutor bgExecuter;
331    
332          /**          /**
333           * is highlighting on or off           * The {@link #localRenderer} for the {@link #localContext} uses this
334             * {@link Image}.
335           */           */
336          private boolean highlight = true;          private BufferedImage localImage;
337    
338          /**          /**
339           * a factory for filters           * The {@link #bgRenderer} for the {@link #bgContext} uses this
340             * {@link Image}.
341           */           */
342          FilterFactory2 ff;          private BufferedImage bgImage;
343    
344          /**          /**
345           * a factory for geometries           * This {@link Image} is a merge of the {@link #bgImage},
346             * {@link #localImage} and {@link #addGadgets(Graphics2D, boolean)}. It is
347             * updated with {@link #updateFinalImage()} and used for painting in
348             * {@link #paintComponent(Graphics)}
349           */           */
350          GeometryFactory gf = new GeometryFactory(); // FactoryFinder.getGeometryFactory(null);          private BufferedImage finalImage;
351    
352          /**          /**
353           * the collections of features to be selected or highlighted           * Optionally a transparent image to paint over the map in the lower right
354             * corner.
355             *
356             * @see #addGadgets(Graphics2D)
357             * @see #setMapImage(BufferedImage)
358             **/
359            private BufferedImage mapImage = null;
360    
361            /**
362             * Listens to each layer in the local {@link MapContext} for changes and
363             * triggers repaints.
364           */           */
365          FeatureCollection selection;          protected MapLayerListener bgMapLayerListener = new MapLayerAdapter() {
366    
367                    @Override
368                    public void layerChanged(final MapLayerEvent event) {
369                            requestStartRendering();
370                    }
371    
372                    @Override
373                    public void layerHidden(final MapLayerEvent event) {
374                            requestStartRendering();
375                    }
376    
377                    @Override
378                    public void layerShown(final MapLayerEvent event) {
379                            requestStartRendering();
380                    }
381            };
382    
383          /**          /**
384           * the collections of features to be selected or highlighted           * A flag indicating if dispose() was already called. If true, then further
385             * use of this {@link SelectableXMapPane} is undefined.
386           */           */
387          FeatureCollection highlightFeature;          private boolean disposed = false;
388    
389          private int state = ZoomIn;          /**
390             * While dragging, the {@link #updateFinalImage()} method is translating the
391             * cached images while setting it together.
392             **/
393            Point imageOrigin = new Point(0, 0);
394            /**
395             * For every rendering thread started,
396             * {@link GTUtil#createGTRenderer(MapContext)} is called to create a new
397             * renderer. These Java2D rendering hints are passed to the
398             * {@link GTRenderer}. The java2dHints are the same for all renderers (bg
399             * and local).
400             */
401            private RenderingHints java2dHints;
402    
403            protected LabelCache labelCache = new LabelCacheImpl();
404    
405          /**          /**
406           * how far to zoom in or out           * Listens to changes of the "local" {@link MapContext} and triggers
407             * repaints where needed.
408           */           */
409          private double zoomFactor = 2.0;          private final MapLayerListListener localContextListener = new MapLayerListListener() {
410    
411          Style lineHighlightStyle;                  @Override
412                    public void layerAdded(final MapLayerListEvent event) {
413                            event.getLayer().addMapLayerListener(localMapLayerListener);
414    
415          Style pointHighlightStyle;                          getLocalRenderer().setContext(getMapContext());
416                            requestStartRendering();
417    
418          Style polygonHighlightStyle;                  }
419    
420          Style polygonSelectionStyle;                  @Override
421                    public void layerChanged(final MapLayerListEvent event) {
422    //                      getLocalRenderer().setContext(getMapContext()); geht doch auch ohne?!?!? wow...
423                            requestStartRendering();
424                    }
425    
426          Style pointSelectionStyle;                  @Override
427                    public void layerMoved(final MapLayerListEvent event) {
428                            getLocalRenderer().setContext(getMapContext());
429                            requestStartRendering();
430                    }
431    
432          Style lineSelectionStyle;                  @Override
433                    public void layerRemoved(final MapLayerListEvent event) {
434                            if (event.getLayer() != null)
435                                    event.getLayer().removeMapLayerListener(localMapLayerListener);
436                            getLocalRenderer().setContext(getMapContext());
437                            requestStartRendering();
438                    }
439            };
440    
441          boolean changed = true;          /**
442             * Listens to each layer in the local {@link MapContext} for changes and
443             * triggers repaints. We don't have to listen layerChanged, because that is
444             * already done in {@link #localContextListener}
445             */
446            protected MapLayerListener localMapLayerListener = new MapLayerAdapter() {
447    
448          LabelCache labelCache = new LabelCacheDefault();                  // @Override
449                    // public void layerChanged(final MapLayerEvent event) {
450                    // // getLocalRenderer().setContext(getMapContext()); // betters for SLD
451                    // // // changes?!
452                    // // requestStartRendering();
453                    // }
454    
455          // xulu.sc                  @Override
456          // private boolean reset = false;                  public void layerHidden(final MapLayerEvent event) {
457          protected boolean reset = false;                          requestStartRendering();
458          // xulu.ec                  }
459    
460          int startX;                  @Override
461                    public void layerShown(final MapLayerEvent event) {
462                            requestStartRendering();
463                    }
464            };
465    
466          int startY;          final private GTRenderer localRenderer = GTUtil.createGTRenderer();
467    
468          private boolean clickable;          private final GTRenderer bgRenderer = GTUtil.createGTRenderer();
469    
470          int lastX;          /**
471             * the area of the map to draw
472             */
473            protected Envelope mapArea = null;
474    
475          int lastY;          /**
476             * A flag set it {@link #setMapArea(Envelope)} to indicated the
477             * {@link #paintComponent(Graphics)} method, that the image on-screen is
478             * associated with {@link #oldMapArea} and may hence be scaled for a quick
479             * preview.<br>
480             * The flag is reset
481             **/
482            private boolean mapAreaChanged = false;
483    
484          private SelectionManager selectionManager;          /**
485          // xulu.sn           * This color is used as the default background color when painting a map.
486             */
487            private Color mapBackgroundColor = null;
488    
489            /**
490             * A flag indicating that the shown image is invalid and needs to be
491             * re-rendered.
492             */
493            protected boolean mapImageInvalid = true;
494    
495            /**
496             * Holds a flag for each layer, whether it is regarded or ignored on
497             * {@link #SELECT_TOP}, {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP}
498             * actions.
499             */
500            final protected HashMap<MapLayer, Boolean> mapLayerSelectable = new HashMap<MapLayer, Boolean>();
501    
502            /**
503             * List of listeners of this {@link XMapPane}
504             */
505            protected Vector<JMapPaneListener> mapPaneListeners = new Vector<JMapPaneListener>();
506            /**
507             * If not <code>null</code>, the {@link XMapPane} will not allow to zoom/pan
508             * out of that area
509             **/
510            private Envelope maxExtend = null;
511          private Double maxZoomScale = Double.MIN_VALUE;          private Double maxZoomScale = Double.MIN_VALUE;
512    
513          private Double minZoomScale = Double.MAX_VALUE;          private Double minZoomScale = Double.MAX_VALUE;
         // xulu.en  
514    
         // sk.sn  
515          /**          /**
516           * Wenn true, dann wurde PANNING via mouseDraged-Events begonnen. Dieses           * We store the old mapArea for a moment to use it for the
517           * Flag wird benutzt um nur einmal den passenden Cursor nur einmal zu           * "quick scaled preview" in case of ZoomOut
518           * setzen.           **/
519            protected Envelope oldMapArea = null;
520    
521            /**
522             * We store the old transform for a moment to use it for the
523             * "quick scaled preview" in case of ZoomIn
524             **/
525            protected AffineTransform oldScreenToWorld = null;
526    
527            /**
528             * A flag indicating, that the image size has changed and the buffered
529             * images are not big enough any more
530             **/
531            protected boolean paneResized = true;
532    
533            private BufferedImage preFinalImage;
534    
535            // ** if 0, no quick preview will be shown **/
536            // private int quickPreviewHint = 0;
537    
538            private Map<Object, Object> rendererHints = GTUtil
539                            .getDefaultGTRendererHints(getLocalRenderer());
540    
541            /**
542             * If set to <code>true</code>, the {@link #startRenderThreadsTimer} will
543             * start rendering {@link Thread}s
544             **/
545            private volatile Boolean requestStartRendering = false;
546    
547            /**
548             * Transformation zwischen Fenster-Koordinaten und Karten-Koordinaten
549             * (lat/lon)
550           */           */
551          private boolean panning_started = false;          protected AffineTransform screenToWorld = null;
552    
553          // sk.en          /**
554             * The flag {@link #requestStartRendering} can be set to true by events.
555             * This {@link Timer} checks the flag regularly and starts one renderer
556             * thread.
557             */
558            final private Timer startRenderThreadsTimer;
559    
560          public JMapPane() {          /**
561                  this(null, true, null, null);           * The default state is ZOOM_IN, hence by default the
562          }           * {@link #zoomMapPaneMouseListener} is also enabled.
563             **/
564            private int state = ZOOM_IN;
565    
566          /**          /**
567           * create a basic JMapPane           * Manuell gesetzter statischer Cursor, unabhaengig von der aktuellen
568           *           * MapPane-Funktion
          * @param render  
          *            - how to draw the map  
          * @param context  
          *            - the map context to display  
569           */           */
570          public JMapPane(GTRenderer render, MapContext context) {          protected Cursor staticCursor = null;
571                  this(null, true, render, context);  
572            private AffineTransform worldToScreen;
573    
574            /**
575             * This {@link MouseListener} is managing all zoom related tasks
576             */
577            public final ZoomXMapPaneMouseListener zoomMapPaneMouseListener = new ZoomXMapPaneMouseListener(
578                            this);
579    
580            /** Is set if a renderer has an error **/
581            protected ArrayList<Exception> renderingErrors = new ArrayList<Exception>();
582    
583            /**
584             * If <code>true</code>, then rendering exceptions are rendererd into the
585             * map pane
586             **/
587            private boolean showExceptions = false;
588    
589            public XMapPane() {
590                    this(null, null);
591          }          }
592    
593          /**          /**
594           * full constructor extending JPanel           * full constructor extending JPanel
595           *           *
596           * @param layout           * @param rendererHints
597           *            - layout (probably shouldn't be set)           *            may be <code>null</code>. Otherwise a {@link Map<Object,
598           * @param isDoubleBuffered           *            Object>} of {@link RenderingHints} to override the default
599           *            - a Swing thing I don't really understand           *            from {@link GTUtil#getDefaultGTRendererHints(GTRenderer)}
600           * @param render           *
601           *            - what to draw the map with           * @param localContext
602           * @param context           *            The main {@link MapContext} to use. If <code>null</code>, an
603           *            - what to draw           *            empty {@link DefaultMapContext} will be created.
604           */           */
605          public JMapPane(LayoutManager layout, boolean isDoubleBuffered,          public XMapPane(final MapContext localContext_,
606                          GTRenderer render, MapContext context) {                          final Map<Object, Object> rendererHints) {
607                  super(layout, isDoubleBuffered);                  super(true);
608    
609                    setRendererHints(rendererHints);
610    
611                    setOpaque(true);
612    
613                    if (localContext_ != null)
614                            setLocalContext(localContext_);
615    
616                    /**
617                     * Adding the #zoomMapPaneMouseListener
618                     */
619                    this.addMouseListener(zoomMapPaneMouseListener);
620                    this.addMouseMotionListener(zoomMapPaneMouseListener);
621                    this.addMouseWheelListener(zoomMapPaneMouseListener);
622    
623                    /*
624                     * We use a Timer object to avoid rendering delays and flickering when
625                     * the user is drag-resizing the parent container of this map pane.
626                     *
627                     * Using a ComponentListener doesn't work because, unlike a JFrame, the
628                     * pane receives a stream of events during drag-resizing.
629                     */
630                    resizeTimer = new Timer(DEFAULT_RESIZING_PAINT_DELAY,
631                                    new ActionListener() {
632    
633                  ff = (FilterFactory2) org.geotools.factory.CommonFactoryFinder                                          public void actionPerformed(final ActionEvent e) {
634                                  .getFilterFactory(null);                                                  if (!isWellDefined())
635                  setRenderer(render);                                                          return;
636    
637                                                    // LOGGER.debug("resizeTimer performed");
638    
639                                                    // final Rectangle bounds = getVisibleRect();
640                                                    //
641                                                    // System.out.println("\n\ntimer performs with bounds = "
642                                                    // + bounds);
643    
644                                                    // final Envelope geoMapArea = tranformWindowToGeo(
645                                                    // bounds.x, bounds.y, bounds.x + bounds.width,
646                                                    // bounds.y + bounds.height);
647    
648                                                    paneResized = true;
649                                                    if (!setMapArea(getMapArea())) {
650                                                            // It's important to request new rendering here.
651                                                            // setMapArea only returns true and only calls
652                                                            // requestStartRendering if the maparea has changed.
653                                                            // But if the component is resized, the maparea
654                                                            // doesn't have to change.
655                                                            requestStartRendering();
656                                                    }
657    
658                                            }
659                                    });
660                    resizeTimer.setRepeats(false);
661    
662                    this.addComponentListener(new ComponentAdapter() {
663    
664                            private Rectangle oldVisibleRect;
665    
666                            @Override
667                            public void componentResized(final ComponentEvent e) {
668    
669                                    // Seems to be called twice with the same size..
670                                    if (oldVisibleRect != null
671                                                    && oldVisibleRect.equals(getVisibleRect())) {
672                                            // LOGGER.debug("skipping resize.");
673                                            return;
674                                    }
675    
676                  setContext(context);                                  // LOGGER.debug("resized: " + getVisibleRect());
677                                    resizeTimer.restart();
678                                    oldVisibleRect = getVisibleRect();
679                            }
680    
681                    });
682    
683                    /*
684                     * Setting up the repaintTimer. Not started automatically.
685                     */
686                    repaintTimer = new Timer(REPEATING_REPAINT_DELAY, new ActionListener() {
687    
688                  this.addMouseListener(this);                          @Override
689                  this.addMouseMotionListener(this);                          public void actionPerformed(final ActionEvent e) {
690                  setHighlightManager(new HighlightManager(highlightLayer));                                  if ((!localExecuter.isRunning())
691                  setSelectionManager(new SelectionManager(selectionLayer));                                                  && (bgExecuter != null && !bgExecuter.isRunning())) {
692                  lineHighlightStyle = setupStyle(LINE, Color.red);                                          repaintTimer.stop();
693                                    } else {
694                                            updateFinalImage();
695                                            XMapPane.this.repaint(100);
696    
697                  pointHighlightStyle = setupStyle(POINT, Color.red);                                  }
698                            }
699                    });
700    
701                  polygonHighlightStyle = setupStyle(POLYGON, Color.red);                  repaintTimer.setInitialDelay(INITIAL_REPAINT_DELAY);
702                    repaintTimer.setRepeats(true);
703    
704                  polygonSelectionStyle = setupStyle(POLYGON, Color.cyan);                  /*
705                     * Setting up the startRenderThreadsTimer. This Timer starts
706                     * automatically.
707                     */
708                    startRenderThreadsTimer = new Timer(100, new ActionListener() {
709    
710                  pointSelectionStyle = setupStyle(POINT, Color.cyan);                          @Override
711                            public void actionPerformed(final ActionEvent e) {
712                                    synchronized (requestStartRendering) {
713                                            if (requestStartRendering && isWellDefined()) {
714    
715                                                    if (localExecuter.isRunning()) {
716                                                            localExecuter.cancelTask();
717                                                    } else {
718                                                            // Stupidly, but we have to recheck the
719                                                            setMapArea(getMapArea());
720                                                            requestStartRendering = false;
721                                                            startRendering();
722                                                    }
723                                            }
724                                    }
725                            }
726                    });
727                    startRenderThreadsTimer.start();
728    
                 lineSelectionStyle = setupStyle(LINE, Color.cyan);  
                 setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));  
729          }          }
730    
731          /**          /**
732           * get the renderer           * Fuegt der Map einen Listener hinzu.
733             *
734             * @param l
735             *            neuer Listener
736           */           */
737          public GTRenderer getRenderer() {          public void addMapPaneListener(final JMapPaneListener l) {
738                  return renderer;                  mapPaneListeners.add(l);
739          }          }
740    
741          public void setRenderer(GTRenderer renderer) {          /**
742                  Map hints = new HashMap();           * Korrigiert den {@link Envelope} aka {@code mapArea} auf die beste
743                  if (renderer instanceof StreamingRenderer) {           * erlaubte Flaeche damit die Massstabsbeschaenkungen noch eingehalten
744                          hints = renderer.getRendererHints();           * werden, FALLS der uebergeben Envelope nicht schon gueltig sein sollte.<br>
745                          if (hints == null) {           * Since 21. April 09: Before thecalculation starts, the aspect ratio is
746                                  hints = new HashMap();           * corrected. This change implies, that setMapArea() will most of the time
747             * not allow setting to a wrong aspectRatio.
748             *
749             * @author <a href="mailto:[email protected]">Stefan Alfons
750             *         Kr&uuml;ger</a>
751             */
752            public ReferencedEnvelope bestAllowedMapArea(ReferencedEnvelope env) {
753    
754                    if (getWidth() == 0)
755                            return env;
756    
757                    if (env == null)
758                            return null;
759    
760                    Envelope newArea = null;
761    
762                    /**
763                     * Correct the aspect Ratio before we check the rest. Otherwise we might
764                     * easily fail. We allow to grow here, because we don't check against
765                     * the maxExtend
766                     */
767                    final Rectangle curPaintArea = getVisibleRect();
768    
769                    env = JTSUtil.fixAspectRatio(curPaintArea, env, true);
770    
771                    final double scale = env.getWidth() / getWidth();
772                    final double centerX = env.getMinX() + env.getWidth() / 2.;
773                    final double centerY = env.getMinY() + env.getHeight() / 2.;
774                    double newWidth2 = 0;
775                    double newHeight2 = 0;
776                    if (scale < getMaxZoomScale()) {
777                            // ****************************************************************************
778                            // Wir zoomen weiter rein als erlaubt => Anpassen des envelope
779                            // ****************************************************************************
780                            newWidth2 = getMaxZoomScale() * getWidth() / 2.;
781                            newHeight2 = getMaxZoomScale() * getHeight() / 2.;
782                    } else if (scale > getMinZoomScale()) {
783                            // ****************************************************************************
784                            // Wir zoomen weiter raus als erlaubt => Anpassen des envelope
785                            // ****************************************************************************
786                            newWidth2 = getMinZoomScale() * getWidth() / 2.;
787                            newHeight2 = getMinZoomScale() * getHeight() / 2.;
788                    } else {
789                            // ****************************************************************************
790                            // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen
791                            // ****************************************************************************
792                            newArea = env;
793                    }
794    
795                    if (newArea == null) {
796    
797                            final Coordinate ll = new Coordinate(centerX - newWidth2, centerY
798                                            - newHeight2);
799                            final Coordinate ur = new Coordinate(centerX + newWidth2, centerY
800                                            + newHeight2);
801    
802                            newArea = new Envelope(ll, ur);
803                    }
804    
805                    final Envelope maxAllowedExtend = getMaxExtend();
806    
807                    while (maxAllowedExtend != null && !maxAllowedExtend.contains(newArea)
808                                    && newArea != null && !newArea.isNull()
809                                    && !Double.isNaN(newArea.getMinX())
810                                    && !Double.isNaN(newArea.getMaxX())
811                                    && !Double.isNaN(newArea.getMinY())
812                                    && !Double.isNaN(newArea.getMaxY())) {
813                            /*
814                             * If a maxExtend is set, we have to honour that...
815                             */
816    
817                            // Exceeds top? Move down and maybe cut
818                            if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
819                                    final double divY = newArea.getMaxY()
820                                                    - maxAllowedExtend.getMaxY();
821                                    // LOGGER.debug("Moving area down by " + divY);
822    
823                                    newArea = new Envelope(new Coordinate(newArea.getMinX(),
824                                                    newArea.getMinY() - divY), new Coordinate(newArea
825                                                    .getMaxX(), newArea.getMaxY() - divY));
826    
827                                    if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
828                                            // LOGGER.debug("Now it exeeds the bottom border.. cut!");
829                                            // And cut the bottom if it moved out of the area
830                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
831                                                            maxAllowedExtend.getMinY()), new Coordinate(newArea
832                                                            .getMaxX(), newArea.getMaxY()));
833    
834                                            // LOGGER.debug("and fix aspect ratio");
835    
836                                            newArea = JTSUtil.fixAspectRatio(getVisibleRect(),
837                                                            new ReferencedEnvelope(newArea, env
838                                                                            .getCoordinateReferenceSystem()), false);
839                                    }
840                          }                          }
841                          if (hints.containsKey(StreamingRenderer.LABEL_CACHE_KEY)) {  
842                                  labelCache = (LabelCache) hints                          // Exceeds bottom? Move up and maybe cut
843                                                  .get(StreamingRenderer.LABEL_CACHE_KEY);                          if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
844                          } else {                                  final double divY = newArea.getMinY()
845                                  hints.put(StreamingRenderer.LABEL_CACHE_KEY, labelCache);                                                  - maxAllowedExtend.getMinY();
846                                    // LOGGER.debug("Moving area up by " + divY);
847    
848                                    newArea = new Envelope(new Coordinate(newArea.getMinX(),
849                                                    newArea.getMinY() - divY), new Coordinate(newArea
850                                                    .getMaxX(), newArea.getMaxY() - divY));
851    
852                                    if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
853                                            // LOGGER.debug("Now it exeeds the top border.. cut!");
854                                            // And cut the bottom if it moved out of the area
855                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
856                                                            newArea.getMinY()), new Coordinate(newArea
857                                                            .getMaxX(), maxAllowedExtend.getMaxY()));
858    
859                                            // LOGGER.debug("and fix aspect ratio");
860    
861                                            newArea = JTSUtil.fixAspectRatio(getVisibleRect(),
862                                                            new ReferencedEnvelope(newArea, env
863                                                                            .getCoordinateReferenceSystem()), false);
864                                    }
865                          }                          }
                         renderer.setRendererHints(hints);  
                 }  
866    
867                  this.renderer = renderer;                          // Exceeds to the right? move and maybe cut
868  //              this.highlightRenderer = new StreamingRenderer();                          if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
 //              this.selectionRenderer = new StreamingRenderer();  
869    
870                  hints.put("memoryPreloadingEnabled", Boolean.FALSE);                                  // Move left..
871  //              highlightRenderer.setRendererHints(hints);                                  final double divX = newArea.getMaxX()
872  //              selectionRenderer.setRendererHints(hints);                                                  - maxAllowedExtend.getMaxX();
873                                    // LOGGER.debug("Moving area left by " + divX);
874    
875                                    newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
876                                                    newArea.getMinY()), new Coordinate(newArea.getMaxX()
877                                                    - divX, newArea.getMaxY()));
878    
879                                    if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
880                                            // LOGGER.debug("Now it exeeds the left border.. cut!");
881                                            // And cut the left if it moved out of the area
882                                            newArea = new Envelope(new Coordinate(maxAllowedExtend
883                                                            .getMinX(), newArea.getMinY()), new Coordinate(
884                                                            newArea.getMaxX(), newArea.getMaxY()));
885    
886                                            // LOGGER.debug("and fix aspect ratio");
887    
888                                            newArea = JTSUtil.fixAspectRatio(getVisibleRect(),
889                                                            new ReferencedEnvelope(newArea, env
890                                                                            .getCoordinateReferenceSystem()), false);
891                                    }
892                            }
893    
894                            // Exceeds to the left? move and maybe cut
895                            if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
896    
897                  if (this.context != null) {                                  // Move right..
898                          this.renderer.setContext(this.context);                                  final double divX = newArea.getMinX()
899                                                    - maxAllowedExtend.getMinX();
900                                    // LOGGER.debug("Moving area right by " + divX);
901    
902                                    newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
903                                                    newArea.getMinY()), new Coordinate(newArea.getMaxX()
904                                                    - divX, newArea.getMaxY()));
905    
906                                    if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
907                                            // LOGGER.debug("Now it exeeds the right border.. cut!");
908                                            // And cut the left if it moved out of the area
909                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
910                                                            newArea.getMinY()), new Coordinate(maxAllowedExtend
911                                                            .getMaxX(), newArea.getMaxY()));
912    
913                                            // LOGGER.debug("and fix aspect ratio");
914    
915                                            newArea = JTSUtil.fixAspectRatio(getVisibleRect(),
916                                                            new ReferencedEnvelope(newArea, env
917                                                                            .getCoordinateReferenceSystem()), false);
918                                    }
919                            }
920                  }                  }
         }  
921    
922          public MapContext getContext() {                  return new ReferencedEnvelope(newArea, env
923                  return context;                                  .getCoordinateReferenceSystem());
924          }          }
925    
926          public void setContext(MapContext context) {          /**
927                  if (this.context != null) {           * Should be called when the {@link JMapPane} is not needed no more to help
928                          this.context.removeMapLayerListListener(this);           * the GarbageCollector
929                  }           *
930             * Removes all {@link JMapPaneListener}s that are registered
931             *
932             * @author <a href="mailto:[email protected]">Stefan Alfons
933             *         Kr&uuml;ger</a>
934             */
935            public void dispose() {
936                    if (isDisposed())
937                            return;
938    
939                  this.context = context;                  setPainting(false);
940    
941                  if (context != null) {                  resizeTimer.stop();
942                          this.context.addMapLayerListListener(this);                  startRenderThreadsTimer.stop();
943    
944                    disposed = true;
945    
946                    if (bgExecuter != null) {
947                            bgExecuter.cancelTask();
948                            bgExecuter.dispose();
949                  }                  }
950    
951                  if (renderer != null) {                  if (localExecuter.isRunning()) {
952                          renderer.setContext(this.context);                          int i = 0;
953                            localExecuter.cancelTask();
954                            while (i++ < 10 && localExecuter.isRunning()) {
955                                    try {
956                                            Thread.sleep(200);
957                                    } catch (final InterruptedException e) {
958                                            LOGGER
959                                                            .warn(
960                                                                            "while XMapPane we are waiting for the localExcutor to stop",
961                                                                            e);
962                                    }
963                            }
964                            if (localExecuter.isRunning()) {
965                                    LOGGER
966                                                    .warn("localExecutor Thread still running after 2s! Continuing anyways...");
967                            }
968                            localExecuter.dispose();
969                  }                  }
970    
971                    disposeImages();
972    
973                    // Remove all mapPaneListeners that have registered with us
974                    mapPaneListeners.clear();
975    
976                    removeMouseMotionListener(zoomMapPaneMouseListener);
977                    removeMouseListener(zoomMapPaneMouseListener);
978    
979                    if (localContext != null)
980                            getMapContext().clearLayerList();
981                    if (bgContext != null)
982                            getBgContext().clearLayerList();
983    
984                    removeAll();
985          }          }
986    
987          public Envelope getMapArea() {          /**
988                  return mapArea;           * Draws a rectangle in XOR mode from the origin at {@link #startPos} to the
989             * given point. All in screen coordinates.
990             */
991            protected void drawRectangle(final Graphics graphics, final Point startPos,
992                            final Point e) {
993    
994                    if (!isWellDefined())
995                            return;
996    
997                    // undraw last box/draw new box
998                    final int left = Math.min(startPos.x, e.x);
999                    final int right = Math.max(startPos.x, e.x);
1000                    final int top = Math.max(startPos.y, e.y);
1001                    final int bottom = Math.min(startPos.y, e.y);
1002                    final int width = right - left;
1003                    final int height = top - bottom;
1004    
1005                    if (width == 0 && height == 0)
1006                            return;
1007    
1008                    graphics.setXORMode(Color.WHITE);
1009                    graphics.drawRect(left, bottom, width, height);
1010          }          }
1011    
1012          public void setMapArea(Envelope mapArea) {          /**
1013                  this.mapArea = mapArea;           * Diretly paints scaled preview into the {@link SelectableXMapPane}. Used
1014             * to give the user something to look at while we are rendering. Method
1015             * should be called after {@link #setMapArea(Envelope)} has been set to the
1016             * new mapArea and transform has been reset.<br>
1017             *
1018             * @param g
1019             *            Graphics2D to paint the preview into
1020             */
1021            protected boolean drawScaledPreviewImage_Zoom(final Graphics2D graphics) {
1022    
1023                    // if (1 == 1)return false;
1024                    // if (quickPreviewHint == 0)
1025                    // return false;
1026    
1027                    if (oldMapArea == null)
1028                            return false;
1029    
1030                    if (getPreFinalImage() == null)
1031                            return false;
1032    
1033                    final Rectangle visibleArea = getVisibleRect();
1034    
1035                    // Calculate the oldMapArea in the current WindowCoordinates:
1036                    final Envelope oldMapWindow = tranformGeoToWindow(oldMapArea.getMinX(),
1037                                    oldMapArea.getMinY(), oldMapArea.getMaxX(), oldMapArea
1038                                                    .getMaxY());
1039    
1040                    final int xx1 = (int) Math.round(oldMapWindow.getMinX());
1041                    final int yy1 = (int) Math.round(oldMapWindow.getMinY());
1042                    final int xx2 = (int) Math.round(oldMapWindow.getMaxX());
1043                    final int yy2 = (int) Math.round(oldMapWindow.getMaxY());
1044    
1045                    graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
1046                                    RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);
1047                    graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
1048                                    RenderingHints.VALUE_ANTIALIAS_OFF);
1049                    graphics.setRenderingHint(RenderingHints.KEY_RENDERING,
1050                                    RenderingHints.VALUE_RENDER_SPEED);
1051    
1052                    graphics.drawImage(getPreFinalImage(), xx1, yy1, xx2, yy2,
1053                                    (int) visibleArea.getMinX(), (int) visibleArea.getMinY(),
1054                                    (int) visibleArea.getMaxX(), (int) visibleArea.getMaxY(),
1055                                    getMapBackgroundColor(), null);
1056    
1057                    final Rectangle painedArea = new Rectangle(xx1, yy1, xx2 - xx1, yy2
1058                                    - yy1);
1059    
1060                    SwingUtil.clearAround(graphics, painedArea, visibleArea,
1061                                    getMapBackgroundColor());
1062    
1063                    addGadgets(graphics, true);
1064    
1065                    // quickPreviewHint = 0;
1066    
1067                    repaintTimer.restart();
1068    
1069                    // Something has been drawn
1070                    return true;
1071          }          }
1072    
1073          public int getState() {          public MapContext getBgContext() {
1074                  return state;                  return bgContext;
1075          }          }
1076    
1077          public void setState(int state) {          /**
1078                  this.state = state;           * Lazyly initializes a {@link BufferedImage} for the background renderer.
1079             */
1080            private Image getBgImage() {
1081                    if (bgImage == null) {
1082                            bgImage = new BufferedImage(getVisibleRect().width,
1083                                            getVisibleRect().height, IMAGETYPE);
1084                            SwingUtil.clearImage(finalImage, getMapBackgroundColor());
1085                    }
1086    
1087                  // System.out.println("State: " + state);                  return bgImage;
1088          }          }
1089    
1090          public double getZoomFactor() {          public MapContext getMapContext() {
1091                  return zoomFactor;                  if (localContext == null) {
1092                            setLocalContext(new DefaultMapContext());
1093                    }
1094                    return localContext;
1095          }          }
1096    
1097          public void setZoomFactor(double zoomFactor) {          private BufferedImage getFinalImage() {
1098                  this.zoomFactor = zoomFactor;                  //
1099          }                  if (finalImage == null) {
1100                            // Rectangle curPaintArea = getVisibleRect();
1101                            finalImage = new BufferedImage(getVisibleRect().width,
1102                                            getVisibleRect().height, IMAGETYPE);
1103                            SwingUtil.clearImage(finalImage, getMapBackgroundColor());
1104    
1105          public MapLayer getSelectionLayer() {                          // requestStartRendering();
1106                  return selectionLayer;                  }
1107                    return finalImage;
1108          }          }
1109    
1110          public void setSelectionLayer(MapLayer selectionLayer) {          /**
1111                  this.selectionLayer = selectionLayer;           * Lazyly initializes a {@link BufferedImage} for the background renderer.
1112                  if (selectionManager != null) {           */
1113                          selectionManager.setSelectionLayer(selectionLayer);          private BufferedImage getLocalImage() {
1114    
1115                    if (localImage == null) {
1116                            localImage = new BufferedImage(getVisibleRect().width,
1117                                            getVisibleRect().height, IMAGETYPE_withAlpha);
1118                            SwingUtil.clearImage(localImage, getMapBackgroundColor());
1119                  }                  }
1120    
1121                    return localImage;
1122          }          }
1123    
1124          public boolean isHighlight() {          /**
1125                  return highlight;           * Returns a copy of the mapArea
1126             *
1127             * @return
1128             */
1129            public ReferencedEnvelope getMapArea() {
1130                    if (mapArea == null) {
1131                            ReferencedEnvelope mapArea_ = null;
1132                            try {
1133                                    mapArea_ = localContext.getLayerBounds();
1134                            } catch (final IOException e) {
1135                                    LOGGER.warn("localContext.getLayerBounds()", e);
1136                            }
1137    
1138                            if (mapArea_ == null && bgContext != null) {
1139                                    try {
1140                                            mapArea_ = bgContext.getLayerBounds();
1141                                    } catch (final IOException e) {
1142                                            LOGGER.warn("bgContext.getLayerBounds()", e);
1143                                    }
1144                            }
1145    
1146                            if (mapArea_ != null) {
1147                                    mapArea = bestAllowedMapArea(mapArea_);
1148                                    requestStartRendering();
1149                            }
1150                    }
1151    
1152                    if (mapArea == null)
1153                            return null;
1154    
1155                    // TODO is needed at all, this should go to setMapArea maybe
1156                    if (localContext.getCoordinateReferenceSystem() == null)
1157                            try {
1158                                    localContext.setCoordinateReferenceSystem(GeoImportUtil
1159                                                    .getDefaultCRS());
1160                            } catch (final Exception e) {
1161                                    throw new RuntimeException("setting context CRS:", e);
1162                            }
1163    
1164                    return new ReferencedEnvelope(mapArea, localContext
1165                                    .getCoordinateReferenceSystem());
1166          }          }
1167    
1168          public void setHighlight(boolean highlight) {          /**
1169                  this.highlight = highlight;           * Returns the background {@link Color} of the map pane. If not set, the
1170             * methods looks for a parent component and will use its background color.
1171             * If no parent component is available, WHITE is returned.
1172             **/
1173            public Color getMapBackgroundColor() {
1174                    if (mapBackgroundColor == null) {
1175                            if (getParent() != null)
1176                                    return getParent().getBackground();
1177                            else
1178                                    return Color.WHITE;
1179                    }
1180                    return mapBackgroundColor;
1181          }          }
1182    
1183          public MapLayer getHighlightLayer() {          /**
1184                  return highlightLayer;           * Get the BufferedImage to use as a flaoting icon in the lower right
1185             * corner.
1186             *
1187             * @return <code>null</code> if the feature is deactivated.
1188             */
1189            public BufferedImage getMapImage() {
1190                    return mapImage;
1191          }          }
1192    
1193          public void setHighlightLayer(MapLayer highlightLayer) {          /**
1194                  this.highlightLayer = highlightLayer;           * Returns the evelope of the viewable area. The JMapPane will never show
1195             * anything outside of this extend. If this has been set to
1196             * <code>null</code> via {@link #setMaxExtend(Envelope)}, it tries to return
1197             * quickly the context's bounds. It it takes to long to determine the
1198             * context bounds, <code>null</code> is returned.
1199             *
1200             * @param maxExtend
1201             *            <code>null</code> to not have this restriction.
1202             */
1203    
1204                  if (highlightManager != null) {          public Envelope getMaxExtend() {
1205                          highlightManager.setHighlightLayer(highlightLayer);                  if (maxExtend == null) {
1206    
1207                            // The next command may take long time!
1208                            // long start = System.currentTimeMillis();
1209                            final ReferencedEnvelope layerBounds = GTUtil
1210                                            .getVisibleLayoutBounds(localContext);
1211                            //                      
1212                            // LOGGER.info(
1213                            // (System.currentTimeMillis()-start)+"m to get maxExtend");
1214                            //                      
1215                            if (layerBounds == null) {
1216                                    // // TODO Last fallback could be the CRS valid area
1217                                    return null;
1218                            }
1219    
1220                            // Vergrößerung um 10% nochmal rausgenommen
1221                            // // // Kartenbereich um 10% vergroessern
1222                            // return JTSUtil.fixAspectRatio(getVisibleRect(), JTSUtil
1223                            // .expandEnvelope(layerBounds, 0.1), true);
1224    
1225                            return JTSUtil.fixAspectRatio(getVisibleRect(), layerBounds, true);
1226                  }                  }
1227                    return maxExtend;
1228            }
1229    
1230            /**
1231             * Retuns the maximum allowed zoom scale. This is the smaller number value
1232             * of the two. Defaults to {@link Double}.MIN_VALUE
1233             *
1234             * @author <a href="mailto:[email protected]">Stefan Alfons
1235             *         Kr&uuml;ger</a>
1236             */
1237            public Double getMaxZoomScale() {
1238                    return maxZoomScale;
1239          }          }
1240    
1241          public HighlightManager getHighlightManager() {          /**
1242                  return highlightManager;           * Retuns the minimum allowed zoom scale. This is the bigger number value of
1243             * the two. Defaults to {@link Double}.MAX_VALUE
1244             *
1245             * @author <a href="mailto:[email protected]">Stefan Alfons
1246             *         Kr&uuml;ger</a>
1247             */
1248            public Double getMinZoomScale() {
1249                    return minZoomScale;
1250          }          }
1251    
1252          public void setHighlightManager(HighlightManager highlightManager) {          private Image getPreFinalImage() {
1253                  this.highlightManager = highlightManager;                  return preFinalImage;
                 this.highlightManager.addHighlightChangeListener(this);  
                 this.addMouseMotionListener(this.highlightManager);  
1254          }          }
1255    
1256          public Style getLineHighlightStyle() {          public Map<Object, Object> getRendererHints() {
1257                  return lineHighlightStyle;                  // Clear label cache
1258                    labelCache.clear();
1259                    rendererHints.put(StreamingRenderer.LABEL_CACHE_KEY, labelCache);
1260    
1261                    return rendererHints;
1262          }          }
1263    
1264          public void setLineHighlightStyle(Style lineHighlightStyle) {          /**
1265                  this.lineHighlightStyle = lineHighlightStyle;           * Liefert eine affine Transformation, um von den Fenster-Koordinaten in die
1266             * Karten-Koordinaten (Lat/Lon) umzurechnen.
1267             *
1268             * @return eine Kopie der aktuellen Transformation; <code>null</code> wenn
1269             *         noch keine Karte angezeigt wird
1270             */
1271            public AffineTransform getScreenToWorld() {
1272                    if (screenToWorld == null)
1273                            resetTransforms();
1274                    // nur Kopie der Transformation zurueckgeben!
1275                    if (screenToWorld == null)
1276                            return null;
1277                    return new AffineTransform(screenToWorld);
1278          }          }
1279    
1280          public Style getLineSelectionStyle() {          public int getState() {
1281                  return lineSelectionStyle;                  return state;
1282          }          }
1283    
1284          public void setLineSelectionStyle(Style lineSelectionStyle) {          /**
1285                  this.lineSelectionStyle = lineSelectionStyle;           * Liefert den statisch eingestellten Cursor, der unabhaengig von der
1286             * eingestellten MapPane-Aktion (Zoom, Auswahl, ...) verwendet wird.
1287             *
1288             * @return {@code null}, wenn kein statischer Cursor verwendet, sondern der
1289             *         Cursor automatisch je nach MapPane-Aktion eingestellt wird.
1290             */
1291            public Cursor getStaticCursor() {
1292                    return this.staticCursor;
1293          }          }
1294    
1295          public Style getPointHighlightStyle() {          public AffineTransform getWorldToScreenTransform() {
1296                  return pointHighlightStyle;                  if (worldToScreen == null) {
1297                            resetTransforms();
1298                    }
1299                    // nur Kopie der Transformation zurueckgeben!
1300                    return new AffineTransform(worldToScreen);
1301          }          }
1302    
1303          public void setPointHighlightStyle(Style pointHighlightStyle) {          /**
1304                  this.pointHighlightStyle = pointHighlightStyle;           * A flag indicating if dispose() has already been called. If true, then
1305             * further use of this {@link SelectableXMapPane} is undefined.
1306             */
1307            private boolean isDisposed() {
1308                    return disposed;
1309          }          }
1310    
1311          public Style getPointSelectionStyle() {          /**
1312                  return pointSelectionStyle;           * Returns whether a layer is regarded or ignored on {@link #SELECT_TOP},
1313             * {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP} actions. Returns
1314             * <code>true</code> if the selectability has not been defined.
1315             *
1316             * @param layer
1317             *            a layer
1318             */
1319            public boolean isMapLayerSelectable(final MapLayer layer) {
1320                    final Boolean selectable = mapLayerSelectable.get(layer);
1321                    return selectable == null ? true : selectable;
1322          }          }
1323    
1324          public void setPointSelectionStyle(Style pointSelectionStyle) {          /**
1325                  this.pointSelectionStyle = pointSelectionStyle;           * Return <code>true</code> if a CRS and a {@link #mapArea} are set and the
1326             * {@link XMapPane} is visible and has bounds set.
1327             */
1328            public boolean isWellDefined() {
1329                    try {
1330                            if (getMapContext() == null)
1331                                    return false;
1332                            if (getMapContext().getLayerCount() <= 0)
1333                                    return false;
1334                            if (getVisibleRect().getWidth() == 0)
1335                                    return false;
1336                            if (getVisibleRect().getHeight() == 0)
1337                                    return false;
1338                            // if (getMapArea() == null)
1339                            // return false;
1340                    } catch (final Exception e) {
1341                            return false;
1342                    }
1343                    return true;
1344          }          }
1345    
1346          public Style getPolygonHighlightStyle() {          /**
1347                  return polygonHighlightStyle;           * Called from the listeners while the mouse is dragging, this method either
1348             * paints a translated (moved/panned) version of the image, or a rectangle.
1349             *
1350             * @param startPos
1351             *            in screen coordinates
1352             * @param lastPos
1353             *            in screen coordinates
1354             * @param event
1355             *            the {@link MouseEvent} to read the mouse buttons from
1356             */
1357            public void mouseDragged(final Point startPos, final Point lastPos,
1358                            final MouseEvent event) {
1359    
1360                    if ((getState() == XMapPane.PAN)
1361                                    || ((event.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {
1362    
1363                            // Panning needs a panning coursor
1364                            if (getCursor() != SwingUtil.PANNING_CURSOR) {
1365                                    setCursor(SwingUtil.PANNING_CURSOR);
1366    
1367                                    // While panning, we deactivate the rendering. So the tasks are
1368                                    // ready to start when the panning is finished.
1369                                    if (bgExecuter != null && bgExecuter.isRunning())
1370                                            bgExecuter.cancelTask();
1371                                    if (localExecuter.isRunning())
1372                                            localExecuter.cancelTask();
1373                            }
1374    
1375                            if (lastPos.x > 0 && lastPos.y > 0) {
1376                                    final int dx = event.getX() - lastPos.x;
1377                                    final int dy = event.getY() - lastPos.y;
1378    
1379                                    // TODO Stop dragging when the drag would not be valid...
1380                                    // boolean dragValid = true;
1381                                    // // check if this panning results in a valid mapArea
1382                                    // {
1383                                    // Rectangle winBounds = xMapPane.getBounds();
1384                                    // winBounds.translate(xMapPane.imageOrigin.x,
1385                                    // -xMapPane.imageOrigin.y);
1386                                    // Envelope newMapAreaBefore = xMapPane.tranformWindowToGeo(
1387                                    // winBounds.x, winBounds.y, winBounds.x
1388                                    // + winBounds.width, winBounds.y
1389                                    // + winBounds.height);
1390                                    //                                      
1391                                    //
1392                                    // winBounds = xMapPane.getBounds();
1393                                    // Point testIng = new Point(xMapPane.imageOrigin);
1394                                    // testIng.translate(dx, dy);
1395                                    // winBounds.translate(testIng.x, -testIng.y);
1396                                    // Envelope newMapAreaAfter = xMapPane.tranformWindowToGeo(
1397                                    // winBounds.x, winBounds.y, winBounds.x
1398                                    // + winBounds.width, winBounds.y
1399                                    // + winBounds.height);
1400                                    //
1401                                    // // If the last drag doesn't change the MapArea anymore cancel
1402                                    // it.
1403                                    // if (xMapPane.bestAllowedMapArea(newMapAreaAfter).equals(
1404                                    // xMapPane.bestAllowedMapArea(newMapAreaBefore))){
1405                                    // dragValid = false;
1406                                    // return;
1407                                    // }
1408                                    // }
1409    
1410                                    imageOrigin.translate(dx, dy);
1411                                    updateFinalImage();
1412                                    repaint();
1413                            }
1414    
1415                    } else if ((getState() == XMapPane.ZOOM_IN)
1416                                    || (getState() == XMapPane.ZOOM_OUT)
1417                                    || (getState() == XMapPane.SELECT_ALL)
1418                                    || (getState() == XMapPane.SELECT_TOP)) {
1419    
1420                            // Draws a rectangle
1421                            final Graphics2D graphics = (Graphics2D) getGraphics();
1422                            drawRectangle(graphics, startPos, event.getPoint());
1423                            if ((lastPos.x > 0) && (lastPos.y > 0))
1424                                    drawRectangle(graphics, startPos, lastPos);
1425                            graphics.dispose();
1426                    }
1427          }          }
1428    
1429          public void setPolygonHighlightStyle(Style polygonHighlightStyle) {          /**
1430                  this.polygonHighlightStyle = polygonHighlightStyle;           * Called by the {@link RenderingExecutor} when rendering was cancelled.
1431             */
1432            public void onRenderingCancelled() {
1433                    // LOGGER.debug("Rendering cancelled");
1434                    repaintTimer.stop();
1435          }          }
1436    
1437          public Style getPolygonSelectionStyle() {          /**
1438                  return polygonSelectionStyle;           * Called by the {@link RenderingExecutor} when rendering has been
1439             * completed.
1440             *
1441             * @param l
1442             *            long ms the rendering took
1443             */
1444            public void onRenderingCompleted(final long l) {
1445                    lastRenderingDuration = (lastRenderingDuration + l) / 2;
1446    //              LOGGER
1447    //                              .debug("complete rendering after " + lastRenderingDuration
1448    //                                              + "ms");
1449    
1450                    repaintTimer.stop();
1451    
1452                    // We "forget" about an exception every time we complete a rendering
1453                    // thread successfully
1454                    if (renderingErrors.size() > 0)
1455                            renderingErrors.remove(0);
1456    
1457                    updateFinalImage();
1458                    repaint();
1459          }          }
1460    
1461          public void setPolygonSelectionStyle(Style polygonSelectionStyle) {          /**
1462                  this.polygonSelectionStyle = polygonSelectionStyle;           * Called by the {@linkplain XMapPane.RenderingTask} when rendering failed.
1463             * Publishes a {@linkplain MapPaneEvent} of type {@code
1464             * MapPaneEvent.Type.RENDERING_STOPPED} to listeners.
1465             *
1466             * @param renderingError
1467             *            The error that occured during rendering
1468             *
1469             * @see MapPaneListener#onRenderingStopped(org.geotools.swing.event.MapPaneEvent)
1470             */
1471            public void onRenderingFailed(final Exception renderingError) {
1472    
1473                    // Store the exceptions so we can show it to the user:
1474                    if (!(renderingError instanceof java.lang.IllegalArgumentException && renderingError
1475                                    .getMessage().equals(
1476                                                    "Argument \"sourceCRS\" should not be null.")))
1477                            this.renderingErrors.add(renderingError);
1478                    if (renderingErrors.size() > 3)
1479                            renderingErrors.remove(0);
1480    
1481                    repaintTimer.stop();
1482    
1483                    LOGGER.warn("Rendering failed", renderingError);
1484                    updateFinalImage();
1485                    repaint();
1486    
1487          }          }
1488    
1489          protected void paintComponent(Graphics g) {          @Override
1490                  super.paintComponent(g);          protected void paintComponent(final Graphics g) {
1491    
1492                    // Maybe update the cursor and maybe stop the repainting timer
1493                    updateCursor();
1494    
1495                    if (!acceptsRepaintCalls)
1496                            return;
1497    
1498                  if ((renderer == null) || (mapArea == null)) {                  if (!isWellDefined())
1499                          return;                          return;
1500                    //
1501                    // if (paneResized) {
1502                    // // ((Graphics2D) g).setBackground(getMapBackgroundColor());
1503                    // // g.clearRect(0, 0, getVisibleRect().width,
1504                    // getVisibleRect().height);
1505                    // return;
1506                    // }
1507    
1508                    // super.paintComponent(g); // candidate for removal
1509    
1510                    boolean paintedSomething = false;
1511    
1512                    if (mapImageInvalid) { /* if the map changed then redraw */
1513    
1514                            mapImageInvalid = false; // Reset for next round
1515    
1516                            // If the new mapArea and the oldMapArea intersect, we can draw some
1517                            // quick scaled preview to make the user feel that something is
1518                            // happening.
1519                            if (lastRenderingDuration > PRESCALE_MINTIME && mapAreaChanged
1520                                            && oldMapArea != null
1521                                            && getMapArea().intersects(oldMapArea)
1522                                            && !getMapArea().equals(oldMapArea) && !paneResized) {
1523    
1524                                    mapAreaChanged = false;
1525    
1526                                    // if (getMapArea().covers(oldMapArea)) {
1527                                    // // quickPreviewHint = ZOOM_OUT;
1528                                    // paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D)
1529                                    // g);
1530                                    // } else if (oldMapArea.covers(getMapArea())) {
1531                                    // quickPreviewHint = ZOOM_IN;
1532                                    paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);
1533                                    // }
1534                            }
1535                  }                  }
1536    
1537                  Rectangle r = getBounds();                  if (!paintedSomething) {
                 Rectangle dr = new Rectangle(r.width, r.height);  
1538    
1539                  if (!r.equals(oldRect) || reset) {                          g.drawImage(getFinalImage(), 0, 0, null);
                         if (!r.equals(oldRect) && (mapArea == null)) {  
                                 try {  
                                         mapArea = context.getLayerBounds();  
                                 } catch (IOException e) {  
                                         // TODO Auto-generated catch block  
                                         e.printStackTrace();  
                                 }  
                         }  
1540    
1541                          if (mapArea != null) {                          paintedSomething = true; // cand. for removal
                                 /* either the viewer size has changed or we've done a reset */  
                                 changed = true; /* note we need to redraw */  
                                 reset = false; /* forget about the reset */  
                                 oldRect = r; /* store what the current size is */  
   
                                 mapArea = fixAspectRatio(r, mapArea);  
                         }  
1542                  }                  }
1543    
1544                  if (!mapArea.equals(oldMapArea)) { /* did the map extent change? */          }
1545                          changed = true;  
1546                          oldMapArea = mapArea;          /**
1547                          // when we tell the context that the bounds have changed WMSLayers           * Heavily works on releasing all resources related to the four
1548                          // can refresh them selves           * {@link Image}s used to cache the results of the different renderers.<br>
1549                          context.setAreaOfInterest(mapArea, context           * In November 2009 i had some memory leaking problems with {@link XMapPane}
1550                                          .getCoordinateReferenceSystem());           * . The resources of the buffered images were never released. It seem to be
1551             * important to call the GC right after flushing the images.<br>
1552             * Hence this method may take a while, because it calls the GC up to four
1553             * times.
1554             */
1555            private void disposeImages() {
1556    
1557                    // System.out.println("vorher = "
1558                    // + new MbDecimalFormatter().format(LangUtil.gcTotal()));
1559                    // bi.flush();
1560                    // return bi = null;
1561                    // System.out.println("nacher = "
1562                    // + new MbDecimalFormatter().format(LangUtil.gcTotal()));
1563                    //
1564                    // System.out.println("\n");
1565    
1566                    if (preFinalImage != null) {
1567                            preFinalImage.flush();
1568                            preFinalImage = null;
1569                            LangUtil.gc();
1570                    }
1571                    if (finalImage != null) {
1572                            finalImage.flush();
1573                            finalImage = null;
1574                            LangUtil.gc();
1575                    }
1576                    if (localImage != null) {
1577                            localImage.flush();
1578                            localImage = null;
1579                            LangUtil.gc();
1580                    }
1581                    if (bgImage != null) {
1582                            bgImage.flush();
1583                            bgImage = null;
1584                            LangUtil.gc();
1585                  }                  }
1586    
1587                  if (changed ) { /* if the map changed then redraw */          }
                         changed = false;  
                         baseImage = new BufferedImage(dr.width, dr.height,  
                                         BufferedImage.TYPE_INT_ARGB);  
1588    
1589                          Graphics2D ig = baseImage.createGraphics();          /**
1590                          /* System.out.println("rendering"); */           * Performs a {@value #PAN} action. During panning, the displacement is
1591                          renderer.setContext(context);           * stored in {@link #imageOrigin} object. Calling {@link #performPan()} will
1592                          labelCache.clear(); // work around anoying labelcache bug           * reset the offset and call {@link #setMapArea(Envelope)}.
1593             */
1594            public void performPan() {
1595    
1596                    final Rectangle winBounds = getVisibleRect();
1597    
1598                          // draw the map                  winBounds.translate(-imageOrigin.x, -imageOrigin.y);
1599                          renderer.paint((Graphics2D) ig, dr, mapArea);                  final Envelope newMapArea = tranformWindowToGeo(winBounds.x,
1600                                    winBounds.y, winBounds.x + winBounds.width, winBounds.y
1601                                                    + winBounds.height);
1602    
1603                          // TODO nur machen, wenn panning beginnt                  imageOrigin.x = 0;
1604                          panningImage = new BufferedImage(dr.width, dr.height,                  imageOrigin.y = 0;
                                         BufferedImage.TYPE_INT_RGB);  
1605    
1606                    if (!setMapArea(newMapArea)) {
1607                            /**
1608                             * If setMapArea returns true, the finalImage is updated anyways.
1609                             * This if-case exists to ensure that we repaint a correct image
1610                             * even if the new panning area has been denied.
1611                             */
1612                            updateFinalImage();
1613                            repaint();
1614                  }                  }
1615    
1616                  ((Graphics2D) g).drawImage(baseImage, 0, 0, this);                  if (getCursor() == SwingUtil.PANNING_CURSOR)
1617                            setCursor(SwingUtil.PAN_CURSOR);
1618            }
1619    
1620                  if ((selection != null) && (selection.size() > 0)) {          /**
1621                          // paint selection           * Entfernt einen Listener von der Map.
1622             *
1623             * @param l
1624             *            zu entfernender Listener
1625             */
1626            public void removeMapPaneListener(final JMapPaneListener l) {
1627                    mapPaneListeners.remove(l);
1628            }
1629    
1630                          String type = selectionLayer.getFeatureSource().getSchema()          /**
1631                                          .getDefaultGeometry().getType().getName();           * Cancels all running renderers and sets the flag to start new ones. <br>
1632                          /* String type = selection.getDefaultGeometry().getGeometryType(); */           *
1633                          /* System.out.println(type); */           * @see #startRenderThreadsTimer
1634                          if (type == null)           */
1635                                  type = "polygon";          private void requestStartRendering() {
1636                    if (bgExecuter != null)
1637                            bgExecuter.cancelTask();
1638    
1639                          /* String type = "point"; */                  localExecuter.cancelTask();
1640    
1641                          if (type.toLowerCase().endsWith("polygon")) {                  mapImageInvalid = true;
1642                                  selectionStyle = polygonSelectionStyle;                  if (paneResized) {
1643                          } else if (type.toLowerCase().endsWith("point")) {                          paneResized = false;
1644                                  selectionStyle = pointSelectionStyle;                          disposeImages();
1645                          } else if (type.toLowerCase().endsWith("line")) {                  }
1646                                  selectionStyle = lineSelectionStyle;                  requestStartRendering = true;
                         }  
1647    
1648                          selectionContext = new DefaultMapContext(DefaultGeographicCRS.WGS84);          }
1649    
1650                          selectionContext.addLayer(selection, selectionStyle);          /**
1651                          selectionRenderer.setContext(selectionContext);           * Calculate the affine transforms used to convert between world and pixel
1652             * coordinates. The calculations here are very basic and assume a cartesian
1653             * reference system.
1654             * <p>
1655             * Tne transform is calculated such that {@code envelope} will be centred in
1656             * the display
1657             *
1658             * @param envelope
1659             *            the current map extent (world coordinates)
1660             * @param paintArea
1661             *            the current map pane extent (screen units)
1662             */
1663            private void resetTransforms() {
1664                    final ReferencedEnvelope refMapEnv = new ReferencedEnvelope(mapArea,
1665                                    getMapContext().getCoordinateReferenceSystem());
1666    
1667                    // System.out
1668                    // .println("paintArea in resetTeansofrms = " + getVisibleRect());
1669                    if (!isWellDefined())
1670                            return;
1671    
1672                          selectImage = new BufferedImage(dr.width, dr.height,                  worldToScreen = RendererUtilities.worldToScreenTransform(refMapEnv,
1673                                          BufferedImage.TYPE_INT_ARGB);                                  getVisibleRect());
1674    
1675                          Graphics2D ig = selectImage.createGraphics();                  try {
1676                          /* System.out.println("rendering selection"); */                          screenToWorld = worldToScreen.createInverse();
                         selectionRenderer.paint((Graphics2D) ig, dr, mapArea);  
1677    
1678                          ((Graphics2D) g).drawImage(selectImage, 0, 0, this);                  } catch (final NoninvertibleTransformException ex) {
1679                            LOGGER
1680                                            .error("can't invert worldToScreen to get screenToWorld!",
1681                                                            ex);
1682                  }                  }
1683            }
1684    
1685                  if (highlight && (highlightFeature != null)          public void setBgContext(final MapContext context) {
1686                                  && (highlightFeature.size() > 0)) {  
1687                          /*                  // Remove the default listener from the old context
1688                           * String type = selection.getDefaultGeometry().getGeometryType();                  if (this.bgContext != null) {
1689                           * System.out.println(type); if(type==null) type="polygon";                          this.bgContext.removeMapLayerListListener(bgContextListener);
                          */  
                         String type = highlightLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getType().getName();  
                         /* String type = selection.getDefaultGeometry().getGeometryType(); */  
                         // System.out.println(type);  
                         if (type == null)  
                                 type = "polygon";  
1690    
1691                          /* String type = "point"; */                          // adding listener to all layers
1692                          Style highlightStyle = null;                          for (final MapLayer mapLayer : bgContext.getLayers()) {
1693                          if (type.toLowerCase().endsWith("polygon")) {                                  mapLayer.removeMapLayerListener(bgMapLayerListener);
                                 highlightStyle = polygonHighlightStyle;  
                         } else if (type.toLowerCase().endsWith("point")) {  
                                 highlightStyle = pointHighlightStyle;  
                         } else if (type.toLowerCase().endsWith("line")) {  
                                 highlightStyle = lineHighlightStyle;  
1694                          }                          }
1695                    }
1696    
1697                          MapContext highlightContext = new DefaultMapContext(                  this.bgContext = context;
1698                                          DefaultGeographicCRS.WGS84);  
1699                    if (context != null) {
1700                            // setMapArea(bgContext.getAreaOfInterest());
1701    
1702                          highlightContext.addLayer(highlightFeature, highlightStyle);                          this.bgContext.addMapLayerListListener(bgContextListener);
                         highlightRenderer.setContext(highlightContext);  
1703    
1704                          /* System.out.println("rendering highlight"); */                          // adding listener to all layers
1705                          highlightRenderer.paint((Graphics2D) g, dr, mapArea);                          for (final MapLayer mapLayer : bgContext.getLayers()) {
1706                                    mapLayer.addMapLayerListener(bgMapLayerListener);
1707                            }
1708                  }                  }
         }  
1709    
1710          private Envelope fixAspectRatio(Rectangle r, Envelope mapArea) {                  requestStartRendering();
1711            }
1712    
1713                  double mapWidth = mapArea.getWidth(); /* get the extent of the map */          public void setJava2dHints(final RenderingHints java2dHints) {
1714                  double mapHeight = mapArea.getHeight();                  this.java2dHints = java2dHints;
1715                  double scaleX = r.getWidth() / mapArea.getWidth(); /*          }
                                                                                                                          * calculate the new  
                                                                                                                          * scale  
                                                                                                                          */  
1716    
1717                  double scaleY = r.getHeight() / mapArea.getHeight();          public void setLocalContext(final MapContext context) {
1718                  double scale = 1.0; // stupid compiler!                  // Remove the default listener from the old context
1719                    if (this.localContext != null) {
1720                            this.localContext.removeMapLayerListListener(localContextListener);
1721    
1722                  if (scaleX < scaleY) { /* pick the smaller scale */                          // adding listener to all layers
1723                          scale = scaleX;                          for (final MapLayer mapLayer : localContext.getLayers()) {
1724                  } else {                                  mapLayer.removeMapLayerListener(localMapLayerListener);
1725                          scale = scaleY;                          }
1726                  }                  }
1727    
1728                  /* calculate the difference in width and height of the new extent */                  this.localContext = context;
                 double deltaX = /* Math.abs */((r.getWidth() / scale) - mapWidth);  
                 double deltaY = /* Math.abs */((r.getHeight() / scale) - mapHeight);  
1729    
1730                  /*                  if (context != null) {
                  * System.out.println("delta x " + deltaX);  
                  * System.out.println("delta y " + deltaY);  
                  */  
1731    
1732                  /* create the new extent */                          // setMapArea(localContext.getAreaOfInterest());
                 Coordinate ll = new Coordinate(mapArea.getMinX() - (deltaX / 2.0),  
                                 mapArea.getMinY() - (deltaY / 2.0));  
                 Coordinate ur = new Coordinate(mapArea.getMaxX() + (deltaX / 2.0),  
                                 mapArea.getMaxY() + (deltaY / 2.0));  
1733    
1734                  return new Envelope(ll, ur);                          getLocalRenderer().setContext(localContext);
         }  
1735    
1736          public void doSelection(double x, double y, MapLayer layer) {                          this.localContext.addMapLayerListListener(localContextListener);
1737    
1738                  Geometry geometry = gf.createPoint(new Coordinate(x, y));                          // adding listener to all layers
1739                            for (final MapLayer mapLayer : localContext.getLayers()) {
1740                                    mapLayer.addMapLayerListener(localMapLayerListener);
1741                            }
1742                    }
1743    
1744                  // org.opengis.geometry.Geometry geometry = new Point();                  requestStartRendering();
1745    
1746                  findFeature(geometry, layer);          }
1747    
1748            public void setBorder(final Border b) {
1749                    super.setBorder(b);
1750          }          }
1751    
1752          /**          /**
1753           * @param geometry           * Triggers to repaint (fast) and re-render (slow) the JMapPane.
          *            - a geometry to construct the filter with  
          * @param i  
          *            - the index of the layer to search  
          * @throws IndexOutOfBoundsException  
1754           */           */
1755          private void findFeature(Geometry geometry, MapLayer layer)          public void refresh() {
1756                          throws IndexOutOfBoundsException {                  mapImageInvalid = true;
1757                  org.opengis.filter.spatial.BinarySpatialOperator f = null;                  repaint();
1758            }
1759    
1760                  if ((context == null) || (layer == null)) {          // /**
1761                          return;          // * Triggers to use new {@link GTRenderer} and refresh the map. Should be
1762                  }          // * called after {@link Style}s have been changed because GTRenderer is
1763            // * otherwise not working well.
1764            // */
1765            // public void refreshRenderers() {
1766            // localRenderer = GTUtil.createGTRenderer();
1767            // setLocalContext(getMapContext());
1768            // mapImageInvalid = true;
1769            // repaint();
1770            // }
1771    
1772                  try {          /**
1773                          String name = layer.getFeatureSource().getSchema()           * Set the new map area.
1774                                          .getDefaultGeometry().getLocalName();           *
1775             * @param newMapArea
1776             * @return <code>true</code> if the mapArea has been changed and a repaint
1777             *         has been triggered.
1778             */
1779            public boolean setMapArea(final Envelope newMapArea) {
1780                    if (newMapArea == null)
1781                            return false;
1782                    if (getMapContext().getCoordinateReferenceSystem() == null)
1783                            return false;
1784                    return setMapArea(new ReferencedEnvelope(newMapArea, getMapContext()
1785                                    .getCoordinateReferenceSystem()));
1786            }
1787    
1788                          if (name == "") {          /**
1789                                  name = "the_geom";           * Set the new map area.
1790                          }           *
1791             * @param newMapArea
1792             * @return <code>true</code> if the mapArea has been changed and a repaint
1793             *         has been triggered.
1794             */
1795            public boolean setMapArea(final ReferencedEnvelope newMapArea) {
1796    
1797                    if (newMapArea == null
1798                                    || bestAllowedMapArea(newMapArea).equals(mapArea)) {
1799                            // No change.. no need to repaint
1800                            return false;
1801                    }
1802    
1803                    // Testing, whether NaN or Infinity are used in the newMapArea
1804                    if (newMapArea.isNull() || Double.isInfinite(newMapArea.getMaxX())
1805                                    || Double.isInfinite(newMapArea.getMaxY())
1806                                    || Double.isInfinite(newMapArea.getMinX())
1807                                    || Double.isInfinite(newMapArea.getMinY())) {
1808                            // No change.. ugly new values
1809                            LOGGER.warn("setMapArea has been called with newArea = "
1810                                            + newMapArea);
1811                            return false;
1812                    }
1813    
1814                    final Envelope candNew = bestAllowedMapArea(newMapArea);
1815    
1816                    // Testing, whether the difference if just minimal
1817                    if (mapArea != null) {
1818                            final double tolX = mapArea.getWidth() / 1000.;
1819                            final double tolY = mapArea.getHeight() / 1000.;
1820                            if ((candNew.getMinX() - tolX < mapArea.getMinX())
1821                                            && (mapArea.getMinX() < candNew.getMinX() + tolX)
1822                                            && (candNew.getMaxX() - tolX < mapArea.getMaxX())
1823                                            && (mapArea.getMaxX() < candNew.getMaxX() + tolX)
1824    
1825                                            && (candNew.getMinY() - tolY < mapArea.getMinY())
1826                                            && (mapArea.getMinY() < candNew.getMinY() + tolY)
1827                                            && (candNew.getMaxY() - tolY < mapArea.getMaxY())
1828                                            && (mapArea.getMaxY() < candNew.getMaxY() + tolY)
1829    
1830                          try {                          ) {
1831                                  f = ff.contains(ff.property(name), ff.literal(geometry));                                  // The two mapAreas only differ my 1/1000th.. ignore
                                 if (selectionManager != null) {  
 //                                      System.out.println("selection changed");  
                                         selectionManager.selectionChanged(this, f);  
1832    
1833                                  }                                  return false;
                         } catch (IllegalFilterException e) {  
                                 // TODO Auto-generated catch block  
                                 e.printStackTrace();  
1834                          }                          }
1835                    }
1836    
1837                          /*                  // New map are is accepted:
1838                           * // f.addLeftGeometry(ff.property(name)); //                  oldMapArea = mapArea;
1839                           * System.out.println("looking with " + f); FeatureCollection fc =                  mapArea = candNew;
1840                           * layer.getFeatureSource().getFeatures(f);                  resetTransforms();
                          *  
                          *  
                          *  
                          * if (fcol == null) { fcol = fc;  
                          *  
                          * // here we should set the defaultgeom type } else {  
                          * fcol.addAll(fc); }  
                          */  
1841    
1842                          /*                  if (localContext != null) {
1843                           * GeometryAttributeType gat =                          localContext.setAreaOfInterest(mapArea, localContext
1844                           * layer.getFeatureSource().getSchema().getDefaultGeometry();                                          .getCoordinateReferenceSystem());
1845                           * fcol.setDefaultGeometry((Geometry)gat.createDefaultValue());                  }
1846                           */                  if (bgContext != null) {
1847                            bgContext.setAreaOfInterest(mapArea, localContext
1848                                            .getCoordinateReferenceSystem());
1849                    }
1850    
1851                          /*                  mapAreaChanged = true;
                          * Iterator fi = fc.iterator(); while (fi.hasNext()) { Feature feat  
                          * = (Feature) fi.next(); System.out.println("selected " +  
                          * feat.getAttribute("STATE_NAME")); }  
                          */  
                 } catch (IllegalFilterException e) {  
                         // TODO Auto-generated catch block  
                         e.printStackTrace();  
                 }  
                 return;  
         }  
   
         public void mouseClicked(MouseEvent e) {  
                 if (mapArea == null) return;  
                 // System.out.println("before area "+mapArea+"\nw:"+mapArea.getWidth()+"  
                 // h:"+mapArea.getHeight());  
                 Rectangle bounds = this.getBounds();  
                 double x = (double) (e.getX());  
                 double y = (double) (e.getY());  
                 double width = mapArea.getWidth();  
                 double height = mapArea.getHeight();  
                 // xulu.sc  
                 // double width2 = mapArea.getWidth() / 2.0;  
                 // double height2 = mapArea.getHeight() / 2.0;  
                 double width2 = width / 2.0;  
                 double height2 = height / 2.0;  
                 // xulu.ec  
                 double mapX = ((x * width) / (double) bounds.width) + mapArea.getMinX();  
                 double mapY = (((bounds.getHeight() - y) * height) / (double) bounds.height)  
                                 + mapArea.getMinY();  
1852    
1853                  /*                  repaint(200); // Do not remove it!
                  * System.out.println(""+x+"->"+mapX);  
                  * System.out.println(""+y+"->"+mapY);  
                  */  
1854    
1855                  /*                  requestStartRendering();
                  * Coordinate ll = new Coordinate(mapArea.getMinX(), mapArea.getMinY());  
                  * Coordinate ur = new Coordinate(mapArea.getMaxX(), mapArea.getMaxY());  
                  */  
                 double zlevel = 1.0;  
1856    
1857                  switch (state) {                  return true;
1858                  case Pan:          }
                         zlevel = 1.0;  
                         // xulu.sc SK: return here.. a mouselistener is managing the PANNING  
                         // break;  
                         return;  
                         // xulu.ec  
                 case ZoomIn:  
                         zlevel = zoomFactor;  
   
                         break;  
1859    
1860                  case ZoomOut:          /**
1861                          zlevel = 1.0 / zoomFactor;           * Set the background color of the map.
1862             *
1863             * @param if <code>null</code>, white is used.
1864             */
1865            public void setMapBackgroundColor(final Color bgColor) {
1866                    this.mapBackgroundColor = bgColor;
1867            }
1868    
1869                          break;          /**
1870             * Set the BufferedImage to use as a flaoting icon in the lower right corner
1871             *
1872             * @param mapImageIcon
1873             *            <code>null</code> is allowed and deactivates this icon.
1874             */
1875            public void setMapImage(final BufferedImage mapImage) {
1876                    this.mapImage = mapImage;
1877            }
1878    
1879                  case Select:          /**
1880                          doSelection(mapX, mapY, selectionLayer);           * Sets whether a layer is regarded or ignored on {@link #SELECT_TOP},
1881             * {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP} actions.
1882             *
1883             * @param layer
1884             *            a layer
1885             * @param selectable
1886             *            if {@code false} the layer is ignored during the upper
1887             *            mentioned actions. If <code>null</code>, the default (true)
1888             *            will be used.
1889             */
1890            public void setMapLayerSelectable(final MapLayer layer,
1891                            final Boolean selectable) {
1892                    if (selectable == null)
1893                            mapLayerSelectable.remove(layer);
1894                    else
1895                            mapLayerSelectable.put(layer, selectable);
1896            }
1897    
1898                          return;          /**
1899             * Defines an evelope of the viwable area. The JMapPane will never show
1900             * anything outside of this extend.
1901             *
1902             * @param maxExtend
1903             *            <code>null</code> to not have this restriction.
1904             */
1905            public void setMaxExtend(final Envelope maxExtend) {
1906                    this.maxExtend = maxExtend;
1907            }
1908    
1909                  default:          /**
1910                          return;           * Set the maximum allowed zoom scale. This is the smaller number value of
1911                  }           * the two. If <code>null</code> is passed, Double.MINVALUE are used which
1912             * mean there is no restriction.
1913             *
1914             * @author <a href="mailto:[email protected]">Stefan Alfons
1915             *         Kr&uuml;ger</a>
1916             */
1917            public void setMaxZoomScale(final Double maxZoomScale) {
1918                    this.maxZoomScale = maxZoomScale == null ? Double.MIN_VALUE
1919                                    : maxZoomScale;
1920            }
1921    
1922                  Coordinate ll = new Coordinate(mapX - (width2 / zlevel), mapY          // /** Stored the time used for the last real rendering in ms. **/
1923                                  - (height2 / zlevel));          private long lastRenderingDuration = 1000;
                 Coordinate ur = new Coordinate(mapX + (width2 / zlevel), mapY  
                                 + (height2 / zlevel));  
                 // xulu.sc SK: Check for min/max scale  
                 // mapArea = new Envelope(ll, ur);  
                 final Envelope newMapArea = new Envelope(ll, ur);  
                 setMapArea(bestAllowedMapArea(newMapArea));  
                 // xulu.ec  
1924    
1925                  // sk.ec          /**
1926             * Set the minimum (nearest) allowed zoom scale. This is the bigger number
1927             * value of the two. If <code>null</code> is passed, Double.MAXVALUE are
1928             * used which mean there is no restriction.
1929             *
1930             *
1931             * @author <a href="mailto:[email protected]">Stefan Alfons
1932             *         Kr&uuml;ger</a>
1933             */
1934            public void setMinZoomScale(final Double minZoomScale) {
1935                    this.minZoomScale = minZoomScale == null ? Double.MAX_VALUE
1936                                    : minZoomScale;
1937            }
1938    
1939                  // System.out.println("after area "+mapArea+"\nw:"+mapArea.getWidth()+"          /**
1940                  // h:"+mapArea.getHeight());           * If <code>true</code>, allow the {@link XMapPane} to process #repaint()
1941                  repaint();           * requests. Otherwise the map will not paint anything and not start any
1942             * rendering {@link Thread}s.
1943             */
1944            public void setPainting(final boolean b) {
1945                    acceptsRepaintCalls = b;
1946                    if (acceptsRepaintCalls == true)
1947                            repaint();
1948          }          }
1949    
1950          public void mouseEntered(MouseEvent e) {          private void setRendererHints(final Map<Object, Object> rendererHints) {
1951                    if (rendererHints != null)
1952                            this.rendererHints = rendererHints;
1953          }          }
1954    
1955          public void mouseExited(MouseEvent e) {          /**
1956             * Enables/Disables the ZOOM Mouse Listener. Upates the Cursor and stops the
1957             * repaint Timer if
1958             *
1959             * @param state
1960             */
1961            public void setState(final int state) {
1962                    this.state = state;
1963    
1964                    zoomMapPaneMouseListener.setEnabled((state == ZOOM_IN
1965                                    || state == ZOOM_OUT || state == PAN));
1966    
1967                    // Je nach Aktion den Cursor umsetzen
1968                    updateCursor();
1969          }          }
1970    
1971          public void mousePressed(MouseEvent e) {          /**
1972                  startX = e.getX();           * Standardmaessig wird der Cursor automatisch je nach MapPane-Aktion (Zoom,
1973                  startY = e.getY();           * Auswahl, ...) gesetzt. Mit dieser Methode kann ein statischer Cursor
1974                  lastX = 0;           * gesetzt werden, der unabhaengig von der aktuellen MapPanes-Aktion
1975                  lastY = 0;           * beibehalten wird. Um diesen statischen Cursor wieder zu entfernen, kann
1976             * {@code null} als Parameter uebergeben werden
1977             *
1978             * @param cursor
1979             *            Cursor
1980             */
1981            public void setStaticCursor(final Cursor cursor) {
1982                    this.staticCursor = cursor;
1983                    if (cursor != null)
1984                            super.setCursor(cursor);
1985          }          }
1986    
1987          public void mouseReleased(MouseEvent e) {          /**
1988                  int endX = e.getX();           * Starts rendering on one or two threads
1989                  int endY = e.getY();           */
1990            private void startRendering() {
1991    
1992                  processDrag(startX, startY, endX, endY, e);                  if (!isWellDefined() || !acceptsRepaintCalls) {
1993                  lastX = 0;                          // if we are not ready to start rendering, try it again the next
1994                  lastY = 0;                          // time the timer is chacking the flag.
1995                            requestStartRendering = true;
1996                            return;
1997                    }
1998    
1999                    if (bgExecuter != null) {
2000                            // Stop all renderers
2001                            bgExecuter.cancelTask();
2002                    }
2003    
2004                    localExecuter.cancelTask();
2005    
2006                    final Rectangle curPaintArea = getVisibleRect();
2007    
2008                  /**                  /**
2009                   * Es wird nicht (mehr) gepannt!                   * We have to set new renderer
2010                   */                   */
                 panning_started = false;  
         }  
   
         public void mouseDragged(MouseEvent e) {  
                 Graphics graphics = this.getGraphics();  
                 int x = e.getX();  
                 int y = e.getY();  
2011    
2012                  if ((state == JMapPane.Pan)                  if (getBgContext() != null) {
2013                                  || ((e.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {                          bgRenderer.setJava2DHints(getJava2dHints());
2014                          /**                          bgRenderer.setRendererHints(getRendererHints());
                          * SK: Der Cursor wird auf PANNING gesetzt.  
                          */  
                         if (panning_started == false) {  
                                 panning_started = true;  
                                 setCursor(SwingUtil.PANNING_CURSOR);  
                         }  
2015    
2016                          // move the image with the mouse                          // bgExecuter = new RenderingExecutor();
2017                          if ((lastX > 0) && (lastY > 0)) {                          // LOGGER.debug("starting bg renderer:");
2018                                  int dx = lastX - startX;                          // // /* System.out.println("rendering"); */
2019                                  int dy = lastY - startY;                          // final GTRenderer createGTRenderer = GTUtil.createGTRenderer(
2020                                  // System.out.println("translate "+dx+","+dy);                          // bgContext, getRendererHints());
2021                                  final Graphics2D g2 = panningImage.createGraphics();                          // createGTRenderer.setJava2DHints(getJava2dHints());
2022                                  g2.setBackground(new Color(240, 240, 240)); // TODO richtige                          // bgExecuter.submit(getBgContext().getAreaOfInterest(),
2023                                                                                                                          // farbe? am besten                          // curPaintArea,
2024                                                                                                                          // vom L&F die                          // (Graphics2D) getBgImage().getGraphics(), createGTRenderer);
2025                                                                                                                          // hintergrundfarbe                  }
                                                                                                                         // auslesen...  
                                   
                                 g2.clearRect(0, 0, this.getWidth(), this.getHeight());  
                                 g2.drawImage(baseImage, dx, dy, this);  
                                 graphics.drawImage(panningImage, 0, 0, this);  
                         }  
   
                         lastX = x;  
                         lastY = y;  
                 } else  
   
                 if ((state == JMapPane.ZoomIn) || (state == JMapPane.ZoomOut)) {  
   
                         graphics.setXORMode(Color.WHITE);  
   
                         if ((lastX > 0) && (lastY > 0)) {  
                                 drawRectangle(graphics);  
                         }  
   
                         // draw new box  
                         lastX = x;  
                         lastY = y;  
                         drawRectangle(graphics);  
                 } else if (state == JMapPane.Select && selectionLayer != null) {  
   
                         // construct a new bbox filter  
                         Rectangle bounds = this.getBounds();  
   
                         double mapWidth = mapArea.getWidth();  
                         double mapHeight = mapArea.getHeight();  
   
                         double x1 = ((this.startX * mapWidth) / (double) bounds.width)  
                                         + mapArea.getMinX();  
                         double y1 = (((bounds.getHeight() - this.startY) * mapHeight) / (double) bounds.height)  
                                         + mapArea.getMinY();  
                         double x2 = ((x * mapWidth) / (double) bounds.width)  
                                         + mapArea.getMinX();  
                         double y2 = (((bounds.getHeight() - y) * mapHeight) / (double) bounds.height)  
                                         + mapArea.getMinY();  
                         double left = Math.min(x1, x2);  
                         double right = Math.max(x1, x2);  
                         double bottom = Math.min(y1, y2);  
                         double top = Math.max(y1, y2);  
   
                         String name = selectionLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getName();  
   
                         if (name == "") {  
                                 name = "the_geom";  
                         }  
                         Filter bb = ff.bbox(ff.property(name), left, bottom, right, top,  
                                         getContext().getCoordinateReferenceSystem().toString());  
                         if (selectionManager != null) {  
                                 selectionManager.selectionChanged(this, bb);  
                         }  
2026    
2027                          graphics.setXORMode(Color.green);                  if (getMapContext() != null) {
2028                            // localExecuter = new RenderingExecutor(this, 150l);
2029                            // LOGGER.debug("starting local renderer:");
2030    
2031                          /*                          getLocalRenderer().setJava2DHints(getJava2dHints());
2032                           * if ((lastX > 0) && (lastY > 0)) { drawRectangle(graphics); }                          getLocalRenderer().setRendererHints(getRendererHints());
                          */  
2033    
2034                          // draw new box                          final boolean submitted = localExecuter.submit(getMapArea(),
2035                          lastX = x;                                          curPaintArea, (Graphics2D) getLocalImage().getGraphics(),
2036                          lastY = y;                                          getLocalRenderer());
2037                          drawRectangle(graphics);                          if (submitted)
2038                                    repaintTimer.restart();
2039                            else
2040                                    requestStartRendering = true; // Try to start rendering
2041                            // again in
2042                            // a moment
2043                  }                  }
2044    
2045                    updateCursor();
2046          }          }
2047    
2048          // sk.cs          private RenderingHints getJava2dHints() {
2049          // private void processDrag(int x1, int y1, int x2, int y2) {                  return java2dHints;
2050          // sk.ce          }
         protected void processDrag(final int x1, final int y1, final int x2,  
                         final int y2, MouseEvent e) {  
2051    
2052                  /****          /**
2053                   * If no layer is availabe we dont want a NullPointerException           * Transformiert einen Geo-Koordinaten-Bereich in Fenster-Koordinaten.
2054                   */           *
2055                  if (mapArea == null)           * @param ox
2056                          return;           *            X-Koordinate der VON-Position
2057             * @param oy
2058             *            Y-Koordinate der VON-Position
2059             * @param px
2060             *            X-Koordinate der BIS-Position
2061             * @param py
2062             *            Y-Koordinate der BIS-Position
2063             * @param winToGeotransform
2064             *            Eine Window to Geo transform. If <code>null</code>,
2065             *            {@link #getScreenToWorld()} is used.
2066             */
2067            public Envelope tranformGeoToWindow(final double ox, final double oy,
2068                            final double px, final double py) {
2069                    final AffineTransform at = getWorldToScreenTransform();
2070                    Point2D geoO;
2071                    // try {
2072                    geoO = at.transform(new Point2D.Double(ox, oy), null);
2073                    final Point2D geoP = at.transform(new Point2D.Double(px, py), null);
2074                    return new Envelope(geoO.getX(), geoP.getX(), geoO.getY(), geoP.getY());
2075                    // } catch (final NoninvertibleTransformException e) {
2076                    // LOGGER.error(e);
2077                    // return new Envelope(ox, oy, px, py);
2078                    // }
2079            }
2080    
2081            /**
2082             * Transformiert einen Fenster-Koordinaten-Bereich in Geo-Koordinaten.
2083             *
2084             * @param ox
2085             *            X-Koordinate der VON-Position
2086             * @param oy
2087             *            Y-Koordinate der VON-Position
2088             * @param px
2089             *            X-Koordinate der BIS-Position
2090             * @param py
2091             *            Y-Koordinate der BIS-Position
2092             */
2093            public Envelope tranformWindowToGeo(final int ox, final int oy,
2094                            final int px, final int py) {
2095                    final AffineTransform at = getScreenToWorld();
2096                    final Point2D geoO = at.transform(new Point2D.Double(ox, oy), null);
2097                    final Point2D geoP = at.transform(new Point2D.Double(px, py), null);
2098    
2099                    // Mmmmm... don't really understand why its x,x,y,y
2100                    // return new Envelope(geoO.getX(), geoP.getX(), geoO.getY(),
2101                    // geoP.getY());
2102                    return new Envelope(new Coordinate(geoO.getX(), geoO.getY()),
2103                                    new Coordinate(geoP.getX(), geoP.getY()));
2104            }
2105    
2106                  // System.out.println("processing drag from " + x1 + "," + y1 + " -> "          /**
2107                  // + x2 + "," + y2);           * Will update the cursor. If all rendering is finished also stops the
2108                  if ((x1 == x2) && (y1 == y2)) {           * {@link #repaintTimer}
2109                          if (isClickable()) {           */
2110                                  mouseClicked(new MouseEvent(this, 0, new Date().getTime(), 0,          public void updateCursor() {
2111                                                  x1, y1, y2, false));  
2112                    // if the renderers have stopped, also stop the timer that is updating
2113                    // the final image
2114                    if (bgExecuter != null && bgExecuter.isRunning()
2115                                    || localExecuter.isRunning()) {
2116                            setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
2117                            return;
2118                    } else {
2119                            // Allow one last rendering
2120                            if (repaintTimer.isRunning()) {
2121                                    // System.out.println("one last rendering....");
2122                                    repaintTimer.stop();
2123                                    updateFinalImage();
2124                                    repaint();
2125                          }                          }
2126                    }
2127    
2128                    // wenn manueller Cursor gesetzt ist, dann diesen verwenden (unabhaengig
2129                    // von der aktuellen Aktion
2130                    if (this.staticCursor != null) {
2131                            setCursor(staticCursor);
2132                            return;
2133                    }
2134                    if (getCursor() == SwingUtil.PANNING_CURSOR) {
2135                            // This cursor will reset itself
2136                          return;                          return;
2137                  }                  }
2138    
2139                  Rectangle bounds = this.getBounds();                  // Set the cursor depending on what tool is in use...
2140                    switch (state) {
2141                    case SELECT_TOP:
2142                    case SELECT_ONE_FROM_TOP:
2143                    case SELECT_ALL:
2144                            setCursor(SwingUtil.CROSSHAIR_CURSOR);
2145                            break;
2146                    case ZOOM_IN:
2147                            setCursor(SwingUtil.ZOOMIN_CURSOR);
2148                            break;
2149                    case ZOOM_OUT:
2150                            setCursor(SwingUtil.ZOOMOUT_CURSOR);
2151                            break;
2152                    case PAN:
2153                            setCursor(SwingUtil.PAN_CURSOR);
2154                            break;
2155                    default:
2156                            setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
2157                            break;
2158                    }
2159            }
2160    
2161                  double mapWidth = mapArea.getWidth();          /**
2162                  double mapHeight = mapArea.getHeight();           * The renderers are all rendering into their own {@link Image}s. This
2163             * method combines all images to one {@link #finalImage}. The
2164             * {@link #repaintTimer} is calling this method regularely to update the
2165             * {@link #finalImage} even if the renderers are still working.
2166             */
2167            synchronized protected Image updateFinalImage() {
2168    
2169                    // Render the two map images first, into the preFinalImage
2170                    if (bgExecuter != null) {
2171                            final Graphics2D preFinalG = (Graphics2D) getPreFinalImage()
2172                                            .getGraphics();
2173                            preFinalG.setBackground(getMapBackgroundColor());
2174    
2175                            preFinalG.drawImage(getBgImage(), 0, 0, getMapBackgroundColor(),
2176                                            null);
2177    
2178                            // // Draw the local layers image
2179                            preFinalG.drawImage(getLocalImage(), 0, 0, null);
2180                            preFinalG.dispose();
2181    
2182                  double startX = ((x1 * mapWidth) / (double) bounds.width)                  } else {
2183                                  + mapArea.getMinX();                          preFinalImage = getLocalImage();
                 double startY = (((bounds.getHeight() - y1) * mapHeight) / (double) bounds.height)  
                                 + mapArea.getMinY();  
                 double endX = ((x2 * mapWidth) / (double) bounds.width)  
                                 + mapArea.getMinX();  
                 double endY = (((bounds.getHeight() - y2) * mapHeight) / (double) bounds.height)  
                                 + mapArea.getMinY();  
   
                 if ((state == JMapPane.Pan) || (e.getButton() == MouseEvent.BUTTON3)) {  
                         // move the image with the mouse  
                         // calculate X offsets from start point to the end Point  
                         double deltaX1 = endX - startX;  
   
                         // System.out.println("deltaX " + deltaX1);  
                         // new edges  
                         double left = mapArea.getMinX() - deltaX1;  
                         double right = mapArea.getMaxX() - deltaX1;  
   
                         // now for Y  
                         double deltaY1 = endY - startY;  
   
                         // System.out.println("deltaY " + deltaY1);  
                         double bottom = mapArea.getMinY() - deltaY1;  
                         double top = mapArea.getMaxY() - deltaY1;  
                         Coordinate ll = new Coordinate(left, bottom);  
                         Coordinate ur = new Coordinate(right, top);  
                         // xulu.sc  
                         // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));  
                         setMapArea(fixAspectRatio(this.getBounds(), new Envelope(ll, ur)));  
                         // xulu.ec  
                 } else if (state == JMapPane.ZoomIn) {  
   
                         // Zu kleine Flächen sollen nicht gezoomt werden.  
                         // sk.bc  
                         if ((Math.abs(x1 - x2) * Math.abs(y2 - y1)) < 150)  
                                 return;  
                         // sk.ec  
   
                         drawRectangle(this.getGraphics());  
                         // make the dragged rectangle (in map coords) the new BBOX  
                         double left = Math.min(startX, endX);  
                         double right = Math.max(startX, endX);  
                         double bottom = Math.min(startY, endY);  
                         double top = Math.max(startY, endY);  
                         Coordinate ll = new Coordinate(left, bottom);  
                         Coordinate ur = new Coordinate(right, top);  
                         // xulu.sc  
   
                         // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));  
                         setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));  
   
                         // sk.sc  
 //                      {  
 //                      // SK tries to paint a preview of the zoom ;-9 aha.... well  
 //                      Graphics2D graphics = (Graphics2D) JMapPane.this.getGraphics();  
 //                      graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,  
 //                                      RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);  
 //                      graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,  
 //                                      RenderingHints.VALUE_ANTIALIAS_OFF);  
 //                      graphics.setRenderingHint(RenderingHints.KEY_RENDERING,  
 //                                      RenderingHints.VALUE_RENDER_SPEED);  
 //                      graphics.drawImage(baseImage, 0, 0, JMapPane.this.getWidth(),  
 //                                      JMapPane.this.getHeight(), x1, y1, x2, y2, null);  
 //                      }  
                         // xulu.ec  
                 } else if (state == JMapPane.ZoomOut) {  
                         drawRectangle(this.getGraphics());  
   
                         // make the dragged rectangle in screen coords the new map size?  
                         double left = Math.min(startX, endX);  
                         double right = Math.max(startX, endX);  
                         double bottom = Math.min(startY, endY);  
                         double top = Math.max(startY, endY);  
                         double nWidth = (mapWidth * mapWidth) / (right - left);  
                         double nHeight = (mapHeight * mapHeight) / (top - bottom);  
                         double deltaX1 = left - mapArea.getMinX();  
                         double nDeltaX1 = (deltaX1 * nWidth) / mapWidth;  
                         double deltaY1 = bottom - mapArea.getMinY();  
                         double nDeltaY1 = (deltaY1 * nHeight) / mapHeight;  
                         Coordinate ll = new Coordinate(mapArea.getMinX() - nDeltaX1,  
                                         mapArea.getMinY() - nDeltaY1);  
                         double deltaX2 = mapArea.getMaxX() - right;  
                         double nDeltaX2 = (deltaX2 * nWidth) / mapWidth;  
                         double deltaY2 = mapArea.getMaxY() - top;  
                         double nDeltaY2 = (deltaY2 * nHeight) / mapHeight;  
                         Coordinate ur = new Coordinate(mapArea.getMaxX() + nDeltaX2,  
                                         mapArea.getMaxY() + nDeltaY2);  
                         // xulu.sc  
                         // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));  
                         setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));  
   
                         // xulu.ec  
                 } else if (state == JMapPane.Select && selectionLayer != null) {  
                         double left = Math.min(startX, endX);  
                         double right = Math.max(startX, endX);  
                         double bottom = Math.min(startY, endY);  
                         double top = Math.max(startY, endY);  
   
                         String name = selectionLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getLocalName();  
   
                         if (name == "") {  
                                 name = "the_geom";  
                         }  
                         Filter bb = ff.bbox(ff.property(name), left, bottom, right, top,  
                                         getContext().getCoordinateReferenceSystem().toString());  
                         // System.out.println(bb.toString());  
                         if (selectionManager != null) {  
                                 selectionManager.selectionChanged(this, bb);  
                         }  
                         /*  
                          * FeatureCollection fc; selection = null; try { fc =  
                          * selectionLayer.getFeatureSource().getFeatures(bb); selection =  
                          * fc; } catch (IOException e) { e.printStackTrace(); }  
                          */  
2184                  }                  }
2185    
2186                  // xulu.so                  final Graphics2D finalG = getFinalImage().createGraphics();
2187                  // setMapArea(mapArea);                  finalG.setBackground(getMapBackgroundColor());
2188                  // xulu.eo                  finalG.drawImage(getPreFinalImage(), imageOrigin.x, imageOrigin.y,
2189                  repaint();                                  getMapBackgroundColor(), null);
         }  
2190    
2191          private boolean isClickable() {                  // When panning, we have to clear the area around the image
2192                  return clickable;                  final Rectangle painedArea = new Rectangle(imageOrigin.x,
2193          }                                  imageOrigin.y, getFinalImage().getWidth(), getFinalImage()
2194                                                    .getHeight());
2195                    SwingUtil.clearAround(finalG, painedArea, getVisibleRect(),
2196                                    getMapBackgroundColor());
2197    
2198          private org.geotools.styling.Style setupStyle(int type, Color color) {                  addGadgets(finalG, false);
                 StyleFactory sf = org.geotools.factory.CommonFactoryFinder  
                                 .getStyleFactory(null);  
                 StyleBuilder sb = new StyleBuilder();  
2199    
2200                  org.geotools.styling.Style s = sf.createStyle();                  finalG.dispose();
                 s.setTitle("selection");  
2201    
2202                  // TODO parameterise the color                  return finalImage;
2203                  PolygonSymbolizer ps = sb.createPolygonSymbolizer(color);          }
                 ps.setStroke(sb.createStroke(color));  
2204    
2205                  LineSymbolizer ls = sb.createLineSymbolizer(color);          /**
2206                  Graphic h = sb.createGraphic();           * Paints some optional stuff into the given {@link Graphics2D}. Usually
2207                  h.setMarks(new Mark[] { sb.createMark("square", color) });           * called as the last layer when {@link #updateFinalImage()}
2208             *
2209             * @param forceWait
2210             *            if <code>true</code>, a Wait-message will be painted even
2211             *            though the rendering threads may not yet have started. If
2212             *            <code>false</code>, it will only depend on
2213             *            {@link #localExecuter.isRunning} and #bgExecuter.isRunning
2214             */
2215            private void addGadgets(final Graphics2D graphics, final boolean forceWait) {
2216    
2217                  PointSymbolizer pts = sb.createPointSymbolizer(h);                  // Paint a logo to the bottom right if available
2218                    if (mapImage != null) {
2219                            final Rectangle visibleRect = getVisibleRect();
2220                            graphics.drawImage(mapImage, visibleRect.width
2221                                            - mapImage.getWidth() - 10, getVisibleRect().height
2222                                            - mapImage.getHeight() - 10, null);
2223                    }
2224    
2225                  // Rule r = sb.createRule(new Symbolizer[]{ps,ls,pts});                  int y = 17;
                 switch (type) {  
                 case POLYGON:  
                         s = sb.createStyle(ps);  
2226    
2227                          break;                  // If the rendering process is still running, indicate this is the image
2228                    if (forceWait || bgExecuter != null && bgExecuter.isRunning()
2229                                    || localExecuter.isRunning()) {
2230    
2231                  case POINT:                          y += 8;
                         s = sb.createStyle(pts);  
2232    
2233                          break;                          final Color c = graphics.getColor();
2234                            graphics.setFont(waitFont);
2235    
2236                  case LINE:                          graphics.setColor(getMapBackgroundColor());
2237                          s = sb.createStyle(ls);                          graphics.drawString(waitMsg, 5, y);
2238                            graphics.setColor(getMapBackgroundColor());
2239                            graphics.drawString(waitMsg, 7, y + 2);
2240                            graphics.setColor(Color.BLACK);
2241                            graphics.drawString(waitMsg, 6, y + 1);
2242    
2243                            graphics.setColor(c);
2244    
2245                            y += 21;
2246                  }                  }
2247    
2248                  return s;                  if (!renderingErrors.isEmpty() && isShowExceptions()) {
         }  
2249    
2250          public void highlightChanged(HighlightChangedEvent e) {                          final Color c = graphics.getColor();
2251                  org.opengis.filter.Filter f = e.getFilter();                          graphics.setFont(errorFont);
2252    
2253                  try {                          for (final Exception ex : renderingErrors) {
                         highlightFeature = highlightLayer.getFeatureSource().getFeatures(f);  
                 } catch (IOException e1) {  
                         // TODO Auto-generated catch block  
                         e1.printStackTrace();  
                 }  
2254    
2255                  repaint();                                  String errStr = ex.getLocalizedMessage();
2256          }  
2257                                    if (errStr == null)
2258                                            errStr = ex.getMessage();
2259                                    if (errStr == null)
2260                                            errStr = "unknown error: " + ex.getClass().getSimpleName();
2261    
2262          public void propertyChange(PropertyChangeEvent evt) {                                  graphics.setColor(getMapBackgroundColor());
2263                  String prop = evt.getPropertyName();                                  graphics.drawString(errStr, 5, y);
2264                                    graphics.setColor(Color.RED);
2265                                    graphics.drawString(errStr, 6, y + 1);
2266    
2267                  if (prop.equalsIgnoreCase("crs")) {                                  y += 19;
2268                          context.setAreaOfInterest(context.getAreaOfInterest(),                          }
2269                                          (CoordinateReferenceSystem) evt.getNewValue());  
2270                            graphics.setColor(c);
2271                  }                  }
         }  
2272    
         public boolean isReset() {  
                 return reset;  
2273          }          }
2274    
2275          public void setReset(boolean reset) {          /**
2276                  this.reset = reset;           * Sets the {@link #mapArea} to best possibly present the given features. If
2277          }           * only one single point is given, the window is moved over the point.
2278             *
2279             * @param features
2280             *            if <code>null</code> or size==0, the function doesn nothing.
2281             */
2282            public void zoomTo(
2283                            final FeatureCollection<SimpleFeatureType, SimpleFeature> features) {
2284    
2285          public void layerAdded(MapLayerListEvent event) {                  // if (!isWellDefined()) return;
                 changed = true;  
2286    
2287                  if (context.getLayers().length == 1) { // the first one                  final CoordinateReferenceSystem mapCRS = getMapContext()
2288                                    .getCoordinateReferenceSystem();
2289                    final CoordinateReferenceSystem fCRS = features.getSchema()
2290                                    .getCoordinateReferenceSystem();
2291    
2292                          try {                  ReferencedEnvelope _mapArea;
2293                                  // xulu.sc                  if (mapArea == null)
2294                                  // mapArea = context.getLayerBounds();                          _mapArea = features.getBounds();
2295                                  mapArea = context.getAreaOfInterest();                  else
2296                                  if (mapArea == null)                          _mapArea = getMapArea();
2297                                          mapArea = context.getLayerBounds();                  double width = _mapArea.getWidth();
2298                                  // xulu.ec                  double height = _mapArea.getHeight();
2299                          } catch (IOException e) {                  final double ratio = height / width;
2300                                  // TODO Auto-generated catch block  
2301                                  e.printStackTrace();                  if (features == null || features.size() == 0) {
2302                            // feature count == 0 Zoom to the full extend
2303                            return;
2304                    } else if (features.size() == 1) {
2305    
2306                            // feature count == 1 Just move the window to the point and zoom 'a
2307                            // bit'
2308                            final SimpleFeature singleFeature = features.iterator().next();
2309    
2310                            if (((Geometry) singleFeature.getDefaultGeometry())
2311                                            .getCoordinates().length > 1) {
2312                                    // System.out.println("Zoomed to only pne poylgon");
2313                                    // Poly
2314                                    // TODO max width vs. height
2315                                    width = features.getBounds().getWidth() * 3;
2316                                    height = ratio * width;
2317                            } else {
2318                                    // System.out.println("Zoomed in a bit becasue only one point");
2319                                    // width *= .9;
2320                                    // height *= .9;
2321                          }                          }
2322    
2323                          reset = true;                          Coordinate centre = features.getBounds().centre();
2324                  }                          if (!mapCRS.equals(fCRS)) {
2325                                    // only to calculations if the CRS differ
2326                                    try {
2327                                            MathTransform fToMap;
2328                                            fToMap = CRS.findMathTransform(fCRS, mapCRS);
2329                                            // centre is transformed to the mapCRS
2330                                            centre = JTS.transform(centre, null, fToMap);
2331                                    } catch (final FactoryException e) {
2332                                            LOGGER.error("Looking for a Math transform", e);
2333                                    } catch (final TransformException e) {
2334                                            LOGGER.error("Looking for a Math transform", e);
2335                                    }
2336                            }
2337    
2338                  repaint();                          final Coordinate newLeftBottom = new Coordinate(centre.x - width
2339          }                                          / 2., centre.y - height / 2.);
2340                            final Coordinate newTopRight = new Coordinate(
2341                                            centre.x + width / 2., centre.y + height / 2.);
2342    
2343          public void layerRemoved(MapLayerListEvent event) {                          final Envelope newMapArea = new Envelope(newLeftBottom, newTopRight);
                 changed = true;  
                 repaint();  
         }  
2344    
2345          public void layerChanged(MapLayerListEvent event) {                          setMapArea(newMapArea);
                 changed = true;  
                 // System.out.println("layer changed - repaint");  
                 repaint();  
         }  
2346    
2347          public void layerMoved(MapLayerListEvent event) {                  } else {
2348                  changed = true;                          final ReferencedEnvelope fBounds = features.getBounds();
                 repaint();  
         }  
2349    
2350          protected void drawRectangle(Graphics graphics) {                          ReferencedEnvelope bounds;
2351                  // undraw last box/draw new box                          if (!mapCRS.equals(fCRS)) {
2352                  int left = Math.min(startX, lastX);                                  bounds = JTSUtil.transformEnvelope(fBounds, mapCRS);
2353                  int right = Math.max(startX, lastX);                          } else {
2354                  int top = Math.max(startY, lastY);                                  bounds = fBounds;
2355                  int bottom = Math.min(startY, lastY);                          }
2356                  int width = right - left;                          // BB umrechnen von Layer-CRS in Map-CRS
2357                  int height = top - bottom;  
2358                  // System.out.println("drawing rect("+left+","+bottom+","+ width+","+                          // Expand a bit
2359                  // height+")");                          bounds.expandBy(bounds.getWidth() / 6., bounds.getHeight() / 6.);
2360                  graphics.drawRect(left, bottom, width, height);  
2361                            setMapArea(bounds);
2362                    }
2363          }          }
2364    
2365          /**          /**
2366           * if clickable is set to true then a single click on the map pane will zoom           * Zooms towards a point.
          * or pan the map.  
2367           *           *
2368           * @param clickable           * @param center
2369             *            position in window coordinates
2370             * @param zoomFactor
2371             *            > 1 for zoom in, < 1 for zoom out. Default is 1.33
2372           */           */
2373          public void setClickable(boolean clickable) {          public void zoomTo(final Point center) {
2374                  this.clickable = clickable;                  zoomTo(center, null);
2375          }          }
2376    
2377          public void mouseMoved(MouseEvent e) {          /**
2378          }           * Zooms towards a point.
2379             *
2380             * @param center
2381             *            position in window coordinates
2382             * @param zoomFaktor
2383             *            > 1 for zoom in, < 1 for zoom out. Default is 1.33.
2384             */
2385            public void zoomTo(Point center, Double zoomFaktor) {
2386                    if (zoomFaktor == null || zoomFaktor == 0.)
2387                            zoomFaktor = 2.;
2388    
2389                    final Point2D gcenter = getScreenToWorld().transform(center, null);
2390                    center = null;
2391    
2392                    if (Double.isNaN(gcenter.getX()) || Double.isNaN(gcenter.getY())
2393                                    || Double.isInfinite(gcenter.getX())
2394                                    || Double.isInfinite(gcenter.getY())
2395    
2396          public FeatureCollection getSelection() {                  ) {
2397                  return selection;                          // Not inside valid CRS area! cancel
2398          }                          return;
2399                    }
2400    
2401          public void setSelection(FeatureCollection selection) {                  final Envelope mapArea = getMapArea();
                 this.selection = selection;  
                 repaint();  
         }  
2402    
2403          /*                  final Envelope newMapArea = new Envelope(mapArea);
2404           * (non-Javadoc)                  newMapArea.expandBy((mapArea.getWidth() * zoomFaktor - mapArea
2405           *                                  .getWidth()) / 2., (mapArea.getHeight() * zoomFaktor - mapArea
2406           * @see                                  .getHeight()) / 2.);
          * org.geotools.gui.swing.event.SelectionChangeListener#selectionChanged  
          * (org.geotools.gui.swing.event.SelectionChangedEvent)  
          */  
         public void selectionChanged(SelectionChangedEvent e) {  
2407    
2408                  try {                  // // Move the newMapArea above the new center if we zoom in:
2409                          selection = selectionLayer.getFeatureSource().getFeatures(                  if (zoomFaktor >= 1) {
2410                                          e.getFilter());                          newMapArea.translate(gcenter.getX() - mapArea.centre().x, gcenter
2411                          repaint();                                          .getY()
2412                  } catch (IOException e1) {                                          - mapArea.centre().y);
                         e1.printStackTrace();  
2413                  }                  }
         }  
2414    
2415          public SelectionManager getSelectionManager() {                  setMapArea(newMapArea);
                 return selectionManager;  
2416          }          }
2417    
2418          public void setSelectionManager(SelectionManager selectionManager) {          /**
2419                  this.selectionManager = selectionManager;           * Shall non-fatal rendering exceptions be reported in the mappane or be
2420                  this.selectionManager.addSelectionChangeListener(this);           * dropped quitely.
2421             */
2422            public void setShowExceptions(final boolean showExceptions) {
2423                    this.showExceptions = showExceptions;
2424          }          }
2425    
         // xulu.sn  
2426          /**          /**
2427           * Korrigiert den {@link Envelope} aka {@code mapArea} auf die beste           * Shall exceptions be reported in the mappane?
          * erlaubte Flaeche damit die Massstabsbeschaenkungen noch eingehalten  
          * werden, FALLS der uebergeben Envelope nicht schon gueltig sein sollte.<br/>  
          * Since 21. April 09: Before thecalculation starts, the aspect ratio is  
          * corrected. This change implies, that setMapArea() will most of the time  
          * not allow setting to a wrong aspectRatio.  
          *  
          * @author <a href="mailto:[email protected]">Stefan Alfons  
          *         Kr&uuml;ger</a>  
2428           */           */
2429          public Envelope bestAllowedMapArea(Envelope env) {          public boolean isShowExceptions() {
2430                  if (getWidth() == 0)                  return showExceptions;
2431                          return env;          }
                 if (env == null)  
                         return env;  
   
                 /**  
                  * Correct the aspect Ratio before we check the rest. Otherwise we might  
                  * easily fail.  
                  */  
                 env = fixAspectRatio(this.getBounds(), env);  
2432    
2433                  double scale = env.getWidth() / getWidth();          public GTRenderer getLocalRenderer() {
2434                  double centerX = env.getMinX() + env.getWidth() / 2.;                  return localRenderer;
2435                  double centerY = env.getMinY() + env.getHeight() / 2.;          }
                 double newWidth2;  
                 double newHeight2;  
                 if (scale < getMaxZoomScale()) {  
                         // ****************************************************************************  
                         // Wir zoomen weiter rein als erlaubt => Anpassen des envelope  
                         // ****************************************************************************  
                         newWidth2 = getMaxZoomScale() * getWidth() / 2.;  
                         newHeight2 = getMaxZoomScale() * getHeight() / 2.;  
                 } else if (scale > getMinZoomScale()) {  
                         // ****************************************************************************  
                         // Wir zoomen weiter raus als erlaubt => Anpassen des envelope  
                         // ****************************************************************************  
                         newWidth2 = getMinZoomScale() * getWidth() / 2.;  
                         newHeight2 = getMinZoomScale() * getHeight() / 2.;  
                 } else {  
                         // ****************************************************************************  
                         // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen  
                         // ****************************************************************************  
                         return env;  
                 }  
2436    
                 Coordinate ll = new Coordinate(centerX - newWidth2, centerY  
                                 - newHeight2);  
                 Coordinate ur = new Coordinate(centerX + newWidth2, centerY  
                                 + newHeight2);  
2437    
                 return new Envelope(ll, ur);  
         }  
2438    
2439          /**          /**
2440           * Retuns the minimum allowed zoom scale. This is the bigger number value of           * Setzt den Kartenausschnitt auf die Ausdehnung eines bestimmten Layers.
2441           * the two. Defaults to {@link Double}.MAX_VALUE           * Macht nichts, wenn {@code null} uebergeben wird.
2442           *           *
2443           * @author <a href="mailto:[email protected]">Stefan Alfons           * <br>
2444           *         Kr&uuml;ger</a>           *
2445             * @param layer
2446             *            ein Layer
2447           */           */
2448          public Double getMinZoomScale() {          public void zoomToLayer(MapLayer layer) {
2449                  return minZoomScale;                  if (layer == null)
2450                            return;
2451                    try {
2452    
2453                            // BB umrechnen von Layer-CRS in Map-CRS
2454                            final CoordinateReferenceSystem targetCRS = getMapContext()
2455                                            .getCoordinateReferenceSystem();
2456                            final CoordinateReferenceSystem sourceCRS = layer
2457                                            .getFeatureSource().getSchema()
2458                                            .getCoordinateReferenceSystem();
2459    
2460                            Envelope mapAreaNew;
2461                            if (!CRS.equalsIgnoreMetadata(sourceCRS, targetCRS)) {
2462                                    mapAreaNew = JTSUtil.transformEnvelope(layer.getFeatureSource()
2463                                                    .getBounds(), sourceCRS, targetCRS);
2464                            } else {
2465                                    try {
2466                                            mapAreaNew = layer.getFeatureSource().getBounds();
2467                                    } catch (java.lang.IllegalArgumentException e) {
2468                                            LOGGER.error("Can't calc layers bounds...", e);
2469                                            mapAreaNew = null;
2470    
2471                                            /**
2472                                             *
2473                                             23.10.2009 11:20:50
2474                                             * org.geotools.data.shapefile.shp.PolygonHandler read
2475                                             * WARNUNG: only one hole in this polygon record ERROR
2476                                             * JMapPane zoomToLayer Zoom to layer did not terminate
2477                                             * correctly java.lang.IllegalArgumentException: Points of
2478                                             * LinearRing do not form a closed linestring at
2479                                             * com.vividsolutions
2480                                             * .jts.geom.LinearRing.validateConstruction
2481                                             * (LinearRing.java:105) at
2482                                             * com.vividsolutions.jts.geom.LinearRing
2483                                             * .<init>(LinearRing.java:100) at
2484                                             * com.vividsolutions.jts.geom
2485                                             * .GeometryFactory.createLinearRing
2486                                             * (GeometryFactory.java:339) at
2487                                             * org.geotools.data.shapefile.
2488                                             * shp.PolygonHandler.read(PolygonHandler.java:188) at
2489                                             * org.geotools
2490                                             * .data.shapefile.shp.ShapefileReader$Record.shape
2491                                             * (ShapefileReader.java:106) at
2492                                             * org.geotools.data.shapefile.
2493                                             * ShapefileAttributeReader.next(
2494                                             * ShapefileAttributeReader.java:157) at
2495                                             * org.geotools.data.shapefile
2496                                             * .indexed.IndexedShapefileAttributeReader
2497                                             * .next(IndexedShapefileAttributeReader.java:122) at
2498                                             * org.geotools
2499                                             * .data.FIDFeatureReader.next(FIDFeatureReader.java:96) at
2500                                             * org.geotools.data.FIDFeatureReader.next(FIDFeatureReader.
2501                                             * java:55) at org.geotools.data.MaxFeatureReader.next(
2502                                             * MaxFeatureReader.java:61) at
2503                                             * org.geotools.data.MaxFeatureReader
2504                                             * .next(MaxFeatureReader.java:61)
2505                                             **/
2506                                    }
2507                            }
2508    
2509                            // Kartenbereich um 10% vergroessern, damit z.B. auch ein
2510                            // Punkt-Layer,
2511                            // welches nur aus 2 Punnkten besteht, sichtbar ist (Punkte liegen
2512                            // sonst
2513                            // genau auf dem Rand der angezeigten Flaeche)
2514    
2515                            if (mapAreaNew != null) {
2516                                    mapAreaNew.expandBy(mapAreaNew.getWidth() * 0.1, mapAreaNew
2517                                                    .getHeight() * 0.1);
2518                                    setMapArea(mapAreaNew);
2519                            } else {
2520                                    LOGGER
2521                                                    .warn("Couldn't transformEnvelope when zooming to the layer");
2522                            }
2523                    } catch (Exception err) {
2524                            LOGGER.error("Zoom to layer did not terminate correctly", err);
2525                    }
2526          }          }
2527    
2528          /**          /**
2529           * Retuns the maximum allowed zoom scale. This is the smaller number value           * Zooms the {@link SelectableXMapPane} to the {@link Envelope} of a layer.
2530           * of the two. Defaults to {@link Double}.MIN_VALUE           *
2531             * <br>
2532             * A refresh of the map is not done automatically
2533             *
2534             * @param index
2535             *            Index of the {@link MapLayer} in the {@link MapContext} (from
2536             *            back to top)
2537           *           *
2538           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
2539           *         Kr&uuml;ger</a>           *         Kr&uuml;ger</a>
2540           */           */
2541          public Double getMaxZoomScale() {          public void zoomToLayer(int index) {
2542                  return maxZoomScale;                  final MapContext context = getMapContext();
2543                    if (context != null)
2544                            zoomToLayer(context.getLayer(index));
2545          }          }
2546    
2547          /**          /**
2548           * Set the maximum allowed zoom scale. This is the smaller number value of           * Zooms the {@link SelectableXMapPane} to the {@link Envelope} of the
2549           * the two.           * selected layer. The layer is selected by the idx, counting from front to
2550             * back, like humans would expect in a {@link JList}
2551             *
2552             * <br>
2553             * A refresh of the map is not done automatically
2554             *
2555             *
2556             *
2557             * @param index
2558             *            Reverse index of the {@link MapLayer} in the
2559             *            {@link MapContext}
2560           *           *
2561           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
2562           *         Kr&uuml;ger</a>           *         Kr&uuml;ger</a>
2563           */           */
2564          public void setMaxZoomScale(Double maxZoomScale) {          public void zoomToLayerIdxReverse(int index) {
2565                  // System.out.println("setting max scale to "+maxZoomScale);                  zoomToLayer(getMapContext().getLayerCount() - 1 - index);
                 this.maxZoomScale = maxZoomScale;  
2566          }          }
2567    
2568            
2569            
2570    
2571    
2572          /**          /**
2573           * Set the minimum (nearest) allowed zoom scale. This is the bigger number           * Aktiviert oder deaktiviert das AntiAliasing for diese
2574           * value of the two.           * {@link SelectableXMapPane}. AntiALiasing ist besonders fuer
2575             * Textbeschriftung sehr schoen, verbraucht aber auch mehr Performance.
2576           *           *
2577           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
2578           *         Kr&uuml;ger</a>           *         Kr&uuml;ger</a>
2579           */           */
2580          public void setMinZoomScale(Double minZoomScale) {          public void setAntiAliasing(final boolean aa) {
2581                  this.minZoomScale = minZoomScale;                  // LOGGER.info("Setting AntiAliasing for this JMapPane to " + aa);
2582                    RenderingHints java2DHints = java2dHints;
2583                    if (java2DHints == null) {
2584                            java2DHints = GeoTools.getDefaultHints();
2585                    }
2586                    
2587                    java2DHints.put(RenderingHints.KEY_ANTIALIASING,
2588                                    aa ? RenderingHints.VALUE_ANTIALIAS_ON
2589                                                    : RenderingHints.VALUE_ANTIALIAS_OFF);
2590                    java2DHints.put(RenderingHints.KEY_TEXT_ANTIALIASING,
2591                                    aa ? RenderingHints.VALUE_TEXT_ANTIALIAS_ON
2592                                                    : RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
2593                    java2DHints.put(RenderingHints.KEY_RENDERING,
2594                                    aa ? RenderingHints.VALUE_RENDER_QUALITY
2595                                                    : RenderingHints.VALUE_RENDER_SPEED);
2596                    
2597          }          }
         // xulu.en  
2598    
2599  }  }

Legend:
Removed from v.207  
changed lines
  Added in v.613

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26