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

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

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

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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26