/[schmitzm]/branches/1.0-gt2-2.6/src/skrueger/geotools/XMapPane.java
ViewVC logotype

Annotation of /branches/1.0-gt2-2.6/src/skrueger/geotools/XMapPane.java

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26