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

Legend:
Removed from v.516  
changed lines
  Added in v.654

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26