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

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26