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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 632 - (hide annotations)
Thu Jan 28 14:35:45 2010 UTC (15 years, 1 month ago) by alfonx
Original Path: branches/2.0-RC2/src/skrueger/geotools/XMapPane.java
File size: 78719 byte(s)


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26