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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26