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

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

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

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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26