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

Legend:
Removed from v.511  
changed lines
  Added in v.660

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26