/[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

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

Legend:
Removed from v.341  
changed lines
  Added in v.607

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26