/[schmitzm]/branches/2.0-RC2/src/skrueger/geotools/XMapPane.java
ViewVC logotype

Annotation of /branches/2.0-RC2/src/skrueger/geotools/XMapPane.java

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26