/[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 651 - (hide annotations)
Fri Jan 29 08:37:34 2010 UTC (15 years, 1 month ago) by alfonx
File size: 79435 byte(s)
Created XMapPaneAction_Pan 
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 alfonx 651 private final Point imageOrigin = new Point(0, 0);
399 alfonx 530 /**
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 alfonx 651 XMapPaneAction.PAN);
647 alfonx 649
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 alfonx 651 * Usually called from {@link XMapPaneAction_Pan} to pan the image.
1382 alfonx 555 *
1383     * @param startPos
1384     * in screen coordinates
1385     * @param lastPos
1386     * in screen coordinates
1387     */
1388 alfonx 651 public void pan(final int dX, final int dY) {
1389 alfonx 530
1390 alfonx 651 // if ((getState() == XMapPane.PAN)
1391     // || ((event.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {
1392 alfonx 530
1393 alfonx 651 // Panning needs a panning coursor
1394     if (getCursor() != SwingUtil.PANNING_CURSOR) {
1395     setCursor(SwingUtil.PANNING_CURSOR);
1396 alfonx 530
1397 alfonx 651 // While panning, we deactivate the rendering. So the tasks are
1398     // ready to start when the panning is finished.
1399     if (bgExecuter != null && bgExecuter.isRunning())
1400     bgExecuter.cancelTask();
1401     if (localExecuter.isRunning())
1402     localExecuter.cancelTask();
1403     }
1404     //
1405     // if (lastPos.x > 0 && lastPos.y > 0) {
1406     // final int dx = event.getX() - lastPos.x;
1407     // final int dy = event.getY() - lastPos.y;
1408 alfonx 530
1409 alfonx 651 // TODO Stop dragging when the drag would not be valid...
1410     // boolean dragValid = true;
1411     // // check if this panning results in a valid mapArea
1412     // {
1413     // Rectangle winBounds = xMapPane.getBounds();
1414     // winBounds.translate(xMapPane.imageOrigin.x,
1415     // -xMapPane.imageOrigin.y);
1416     // Envelope newMapAreaBefore = xMapPane.tranformWindowToGeo(
1417     // winBounds.x, winBounds.y, winBounds.x
1418     // + winBounds.width, winBounds.y
1419     // + winBounds.height);
1420     //
1421     //
1422     // winBounds = xMapPane.getBounds();
1423     // Point testIng = new Point(xMapPane.imageOrigin);
1424     // testIng.translate(dx, dy);
1425     // winBounds.translate(testIng.x, -testIng.y);
1426     // Envelope newMapAreaAfter = xMapPane.tranformWindowToGeo(
1427     // winBounds.x, winBounds.y, winBounds.x
1428     // + winBounds.width, winBounds.y
1429     // + winBounds.height);
1430     //
1431     // // If the last drag doesn't change the MapArea anymore cancel
1432     // it.
1433     // if (xMapPane.bestAllowedMapArea(newMapAreaAfter).equals(
1434     // xMapPane.bestAllowedMapArea(newMapAreaBefore))){
1435     // dragValid = false;
1436     // return;
1437     // }
1438     // }
1439 alfonx 530
1440 alfonx 651 getImageOrigin().translate(dX, dY);
1441     updateFinalImage();
1442     repaint();
1443     // }
1444 alfonx 530
1445 alfonx 651 // } else if ((getState() == XMapPane.ZOOM_IN)
1446     // || (getState() == XMapPane.ZOOM_OUT)
1447     // || (getState() == XMapPane.SELECT_ALL)
1448     // || (getState() == XMapPane.SELECT_TOP)) {
1449     //
1450     // // Draws a rectangle
1451     // final Graphics2D graphics = (Graphics2D) getGraphics();
1452     // drawRectangle(graphics, startPos, event.getPoint());
1453     // if ((lastPos.x > 0) && (lastPos.y > 0))
1454     // drawRectangle(graphics, startPos, lastPos);
1455     // graphics.dispose();
1456     // }
1457 alfonx 144 }
1458 mojays 2
1459 alfonx 509 /**
1460 alfonx 530 * Called by the {@link RenderingExecutor} when rendering was cancelled.
1461     */
1462     public void onRenderingCancelled() {
1463 alfonx 607 // LOGGER.debug("Rendering cancelled");
1464 alfonx 530 repaintTimer.stop();
1465     }
1466    
1467     /**
1468     * Called by the {@link RenderingExecutor} when rendering has been
1469     * completed.
1470 alfonx 607 *
1471     * @param l
1472     * long ms the rendering took
1473 alfonx 530 */
1474 alfonx 607 public void onRenderingCompleted(final long l) {
1475     lastRenderingDuration = (lastRenderingDuration + l) / 2;
1476 alfonx 620 // LOGGER
1477     // .debug("complete rendering after " + lastRenderingDuration
1478     // + "ms");
1479 alfonx 555
1480 alfonx 530 repaintTimer.stop();
1481 alfonx 555
1482     // We "forget" about an exception every time we complete a rendering
1483     // thread successfully
1484     if (renderingErrors.size() > 0)
1485     renderingErrors.remove(0);
1486    
1487 alfonx 530 updateFinalImage();
1488     repaint();
1489     }
1490    
1491     /**
1492     * Called by the {@linkplain XMapPane.RenderingTask} when rendering failed.
1493     * Publishes a {@linkplain MapPaneEvent} of type {@code
1494     * MapPaneEvent.Type.RENDERING_STOPPED} to listeners.
1495 alfonx 509 *
1496 alfonx 530 * @param renderingError
1497     * The error that occured during rendering
1498     *
1499     * @see MapPaneListener#onRenderingStopped(org.geotools.swing.event.MapPaneEvent)
1500 alfonx 509 */
1501 alfonx 530 public void onRenderingFailed(final Exception renderingError) {
1502 alfonx 553
1503     // Store the exceptions so we can show it to the user:
1504 alfonx 555 if (!(renderingError instanceof java.lang.IllegalArgumentException && renderingError
1505     .getMessage().equals(
1506 alfonx 553 "Argument \"sourceCRS\" should not be null.")))
1507     this.renderingErrors.add(renderingError);
1508 alfonx 533 if (renderingErrors.size() > 3)
1509     renderingErrors.remove(0);
1510 alfonx 555
1511 alfonx 530 repaintTimer.stop();
1512 alfonx 555
1513 alfonx 530 LOGGER.warn("Rendering failed", renderingError);
1514     updateFinalImage();
1515     repaint();
1516 mojays 2
1517 alfonx 530 }
1518    
1519     @Override
1520     protected void paintComponent(final Graphics g) {
1521 alfonx 544
1522 alfonx 555 // Maybe update the cursor and maybe stop the repainting timer
1523     updateCursor();
1524    
1525 alfonx 530 if (!acceptsRepaintCalls)
1526     return;
1527    
1528 alfonx 555 if (!isWellDefined())
1529     return;
1530 alfonx 607 //
1531     // if (paneResized) {
1532     // // ((Graphics2D) g).setBackground(getMapBackgroundColor());
1533     // // g.clearRect(0, 0, getVisibleRect().width,
1534     // getVisibleRect().height);
1535     // return;
1536     // }
1537 alfonx 530
1538 alfonx 607 // super.paintComponent(g); // candidate for removal
1539 alfonx 530
1540     boolean paintedSomething = false;
1541    
1542     if (mapImageInvalid) { /* if the map changed then redraw */
1543    
1544     mapImageInvalid = false; // Reset for next round
1545    
1546     // If the new mapArea and the oldMapArea intersect, we can draw some
1547     // quick scaled preview to make the user feel that something is
1548     // happening.
1549 alfonx 607 if (lastRenderingDuration > PRESCALE_MINTIME && mapAreaChanged
1550     && oldMapArea != null
1551 alfonx 530 && getMapArea().intersects(oldMapArea)
1552 alfonx 607 && !getMapArea().equals(oldMapArea) && !paneResized) {
1553 alfonx 530
1554     mapAreaChanged = false;
1555    
1556 alfonx 607 // if (getMapArea().covers(oldMapArea)) {
1557     // // quickPreviewHint = ZOOM_OUT;
1558     // paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D)
1559     // g);
1560     // } else if (oldMapArea.covers(getMapArea())) {
1561     // quickPreviewHint = ZOOM_IN;
1562     paintedSomething = drawScaledPreviewImage_Zoom((Graphics2D) g);
1563     // }
1564 alfonx 509 }
1565     }
1566 mojays 2
1567 alfonx 530 if (!paintedSomething) {
1568 mojays 2
1569 alfonx 530 g.drawImage(getFinalImage(), 0, 0, null);
1570 alfonx 529
1571 alfonx 530 paintedSomething = true; // cand. for removal
1572     }
1573 alfonx 529
1574 alfonx 530 }
1575 alfonx 509
1576 alfonx 530 /**
1577     * Heavily works on releasing all resources related to the four
1578     * {@link Image}s used to cache the results of the different renderers.<br>
1579     * In November 2009 i had some memory leaking problems with {@link XMapPane}
1580     * . The resources of the buffered images were never released. It seem to be
1581     * important to call the GC right after flushing the images.<br>
1582     * Hence this method may take a while, because it calls the GC up to four
1583     * times.
1584     */
1585     private void disposeImages() {
1586    
1587     // System.out.println("vorher = "
1588     // + new MbDecimalFormatter().format(LangUtil.gcTotal()));
1589     // bi.flush();
1590     // return bi = null;
1591     // System.out.println("nacher = "
1592     // + new MbDecimalFormatter().format(LangUtil.gcTotal()));
1593     //
1594     // System.out.println("\n");
1595    
1596     if (preFinalImage != null) {
1597     preFinalImage.flush();
1598     preFinalImage = null;
1599     LangUtil.gc();
1600 alfonx 509 }
1601 alfonx 530 if (finalImage != null) {
1602     finalImage.flush();
1603     finalImage = null;
1604     LangUtil.gc();
1605     }
1606     if (localImage != null) {
1607     localImage.flush();
1608     localImage = null;
1609     LangUtil.gc();
1610     }
1611     if (bgImage != null) {
1612     bgImage.flush();
1613     bgImage = null;
1614     LangUtil.gc();
1615     }
1616 alfonx 509
1617 alfonx 144 }
1618 alfonx 651 //
1619     // /**
1620     // * Performs a {@value #PAN} action. During panning, the displacement is
1621     // * stored in {@link #imageOrigin} object. Calling {@link #performPan()} will
1622     // * reset the offset and call {@link #setMapArea(Envelope)}.
1623     // */
1624     // public void performPan() {
1625     //
1626     // final Rectangle winBounds = getVisibleRect();
1627     //
1628     // winBounds.translate(-imageOrigin.x, -imageOrigin.y);
1629     // final Envelope newMapArea = tranformWindowToGeo(winBounds.x,
1630     // winBounds.y, winBounds.x + winBounds.width, winBounds.y
1631     // + winBounds.height);
1632     //
1633     // imageOrigin.x = 0;
1634     // imageOrigin.y = 0;
1635     //
1636     // if (!setMapArea(newMapArea)) {
1637     // /**
1638     // * If setMapArea returns true, the finalImage is updated anyways.
1639     // * This if-case exists to ensure that we repaint a correct image
1640     // * even if the new panning area has been denied.
1641     // */
1642     // updateFinalImage();
1643     // repaint();
1644     // }
1645     //
1646     // if (getCursor() == SwingUtil.PANNING_CURSOR)
1647     // setCursor(SwingUtil.PAN_CURSOR);
1648     // }
1649 mojays 2
1650 alfonx 530 /**
1651     * Entfernt einen Listener von der Map.
1652     *
1653     * @param l
1654     * zu entfernender Listener
1655     */
1656     public void removeMapPaneListener(final JMapPaneListener l) {
1657     mapPaneListeners.remove(l);
1658     }
1659    
1660     /**
1661     * Cancels all running renderers and sets the flag to start new ones. <br>
1662     *
1663     * @see #startRenderThreadsTimer
1664     */
1665     private void requestStartRendering() {
1666     if (bgExecuter != null)
1667     bgExecuter.cancelTask();
1668    
1669 alfonx 555 localExecuter.cancelTask();
1670    
1671 alfonx 544 mapImageInvalid = true;
1672     if (paneResized) {
1673     paneResized = false;
1674     disposeImages();
1675     }
1676     requestStartRendering = true;
1677    
1678 alfonx 530 }
1679    
1680 alfonx 539 /**
1681     * Calculate the affine transforms used to convert between world and pixel
1682     * coordinates. The calculations here are very basic and assume a cartesian
1683     * reference system.
1684     * <p>
1685     * Tne transform is calculated such that {@code envelope} will be centred in
1686     * the display
1687     *
1688     * @param envelope
1689     * the current map extent (world coordinates)
1690     * @param paintArea
1691     * the current map pane extent (screen units)
1692     */
1693     private void resetTransforms() {
1694 alfonx 544 // System.out
1695     // .println("paintArea in resetTeansofrms = " + getVisibleRect());
1696     if (!isWellDefined())
1697     return;
1698 alfonx 543
1699 alfonx 620 if (mapArea == null)
1700     return;
1701 alfonx 649
1702 alfonx 620 final ReferencedEnvelope refMapEnv = new ReferencedEnvelope(mapArea,
1703     getMapContext().getCoordinateReferenceSystem());
1704    
1705 alfonx 539 worldToScreen = RendererUtilities.worldToScreenTransform(refMapEnv,
1706 alfonx 544 getVisibleRect());
1707 alfonx 530
1708 alfonx 539 try {
1709     screenToWorld = worldToScreen.createInverse();
1710 alfonx 530
1711 alfonx 607 } catch (final NoninvertibleTransformException ex) {
1712 alfonx 544 LOGGER
1713     .error("can't invert worldToScreen to get screenToWorld!",
1714     ex);
1715 alfonx 539 }
1716     }
1717 alfonx 536
1718 alfonx 509 public void setBgContext(final MapContext context) {
1719 mojays 2
1720 alfonx 509 // Remove the default listener from the old context
1721     if (this.bgContext != null) {
1722     this.bgContext.removeMapLayerListListener(bgContextListener);
1723    
1724     // adding listener to all layers
1725 alfonx 530 for (final MapLayer mapLayer : bgContext.getLayers()) {
1726 alfonx 509 mapLayer.removeMapLayerListener(bgMapLayerListener);
1727     }
1728 alfonx 144 }
1729 mojays 2
1730 alfonx 509 this.bgContext = context;
1731 mojays 2
1732 alfonx 509 if (context != null) {
1733 alfonx 544 // setMapArea(bgContext.getAreaOfInterest());
1734 alfonx 509
1735     this.bgContext.addMapLayerListListener(bgContextListener);
1736    
1737     // adding listener to all layers
1738 alfonx 530 for (final MapLayer mapLayer : bgContext.getLayers()) {
1739 alfonx 509 mapLayer.addMapLayerListener(bgMapLayerListener);
1740 alfonx 144 }
1741 alfonx 509 }
1742 alfonx 544
1743     requestStartRendering();
1744 alfonx 509 }
1745 mojays 2
1746 alfonx 530 public void setJava2dHints(final RenderingHints java2dHints) {
1747     this.java2dHints = java2dHints;
1748     }
1749    
1750     public void setLocalContext(final MapContext context) {
1751     // Remove the default listener from the old context
1752     if (this.localContext != null) {
1753     this.localContext.removeMapLayerListListener(localContextListener);
1754    
1755     // adding listener to all layers
1756     for (final MapLayer mapLayer : localContext.getLayers()) {
1757     mapLayer.removeMapLayerListener(localMapLayerListener);
1758 alfonx 509 }
1759 alfonx 530 }
1760 alfonx 509
1761 alfonx 530 this.localContext = context;
1762    
1763     if (context != null) {
1764    
1765 alfonx 544 // setMapArea(localContext.getAreaOfInterest());
1766 alfonx 530
1767 alfonx 560 getLocalRenderer().setContext(localContext);
1768 alfonx 530
1769     this.localContext.addMapLayerListListener(localContextListener);
1770    
1771     // adding listener to all layers
1772     for (final MapLayer mapLayer : localContext.getLayers()) {
1773     mapLayer.addMapLayerListener(localMapLayerListener);
1774 alfonx 144 }
1775     }
1776 mojays 2
1777 alfonx 544 requestStartRendering();
1778    
1779 alfonx 509 }
1780 alfonx 607
1781     public void setBorder(final Border b) {
1782     super.setBorder(b);
1783 mojays 561 }
1784 alfonx 509
1785 alfonx 560 /**
1786     * Triggers to repaint (fast) and re-render (slow) the JMapPane.
1787     */
1788     public void refresh() {
1789     mapImageInvalid = true;
1790     repaint();
1791     }
1792    
1793     // /**
1794     // * Triggers to use new {@link GTRenderer} and refresh the map. Should be
1795     // * called after {@link Style}s have been changed because GTRenderer is
1796     // * otherwise not working well.
1797     // */
1798     // public void refreshRenderers() {
1799     // localRenderer = GTUtil.createGTRenderer();
1800     // setLocalContext(getMapContext());
1801     // mapImageInvalid = true;
1802     // repaint();
1803     // }
1804    
1805 alfonx 607 /**
1806     * Set the new map area.
1807     *
1808     * @param newMapArea
1809     * @return <code>true</code> if the mapArea has been changed and a repaint
1810     * has been triggered.
1811     */
1812 alfonx 544 public boolean setMapArea(final Envelope newMapArea) {
1813 alfonx 556 if (newMapArea == null)
1814     return false;
1815 alfonx 560 if (getMapContext().getCoordinateReferenceSystem() == null)
1816     return false;
1817 alfonx 551 return setMapArea(new ReferencedEnvelope(newMapArea, getMapContext()
1818 alfonx 544 .getCoordinateReferenceSystem()));
1819     }
1820    
1821 alfonx 509 /**
1822 alfonx 607 * Set the new map area.
1823     *
1824 alfonx 509 * @param newMapArea
1825     * @return <code>true</code> if the mapArea has been changed and a repaint
1826     * has been triggered.
1827     */
1828 alfonx 544 public boolean setMapArea(final ReferencedEnvelope newMapArea) {
1829 alfonx 509
1830     if (newMapArea == null
1831     || bestAllowedMapArea(newMapArea).equals(mapArea)) {
1832     // No change.. no need to repaint
1833     return false;
1834 alfonx 144 }
1835 mojays 2
1836 alfonx 513 // Testing, whether NaN or Infinity are used in the newMapArea
1837     if (newMapArea.isNull() || Double.isInfinite(newMapArea.getMaxX())
1838     || Double.isInfinite(newMapArea.getMaxY())
1839     || Double.isInfinite(newMapArea.getMinX())
1840     || Double.isInfinite(newMapArea.getMinY())) {
1841     // No change.. ugly new values
1842     LOGGER.warn("setMapArea has been called with newArea = "
1843     + newMapArea);
1844     return false;
1845     }
1846    
1847 alfonx 539 final Envelope candNew = bestAllowedMapArea(newMapArea);
1848    
1849 alfonx 513 // Testing, whether the difference if just minimal
1850 alfonx 509 if (mapArea != null) {
1851 alfonx 530 final double tolX = mapArea.getWidth() / 1000.;
1852     final double tolY = mapArea.getHeight() / 1000.;
1853 alfonx 509 if ((candNew.getMinX() - tolX < mapArea.getMinX())
1854     && (mapArea.getMinX() < candNew.getMinX() + tolX)
1855     && (candNew.getMaxX() - tolX < mapArea.getMaxX())
1856     && (mapArea.getMaxX() < candNew.getMaxX() + tolX)
1857 mojays 2
1858 alfonx 509 && (candNew.getMinY() - tolY < mapArea.getMinY())
1859     && (mapArea.getMinY() < candNew.getMinY() + tolY)
1860     && (candNew.getMaxY() - tolY < mapArea.getMaxY())
1861     && (mapArea.getMaxY() < candNew.getMaxY() + tolY)
1862 mojays 2
1863 alfonx 509 ) {
1864     // The two mapAreas only differ my 1/1000th.. ignore
1865 alfonx 505
1866 alfonx 509 return false;
1867     }
1868     }
1869 mojays 2
1870 alfonx 539 // New map are is accepted:
1871 alfonx 509 oldMapArea = mapArea;
1872 alfonx 539 mapArea = candNew;
1873     resetTransforms();
1874 mojays 2
1875 alfonx 509 if (localContext != null) {
1876     localContext.setAreaOfInterest(mapArea, localContext
1877     .getCoordinateReferenceSystem());
1878 alfonx 144 }
1879 alfonx 509 if (bgContext != null) {
1880     bgContext.setAreaOfInterest(mapArea, localContext
1881     .getCoordinateReferenceSystem());
1882     }
1883 alfonx 544
1884 alfonx 509 mapAreaChanged = true;
1885 alfonx 513
1886 alfonx 555 repaint(200); // Do not remove it!
1887 alfonx 544
1888     requestStartRendering();
1889    
1890 alfonx 509 return true;
1891     }
1892 mojays 2
1893 alfonx 509 /**
1894 alfonx 530 * Set the background color of the map.
1895 alfonx 509 *
1896 alfonx 530 * @param if <code>null</code>, white is used.
1897 alfonx 509 */
1898 alfonx 607 public void setMapBackgroundColor(final Color bgColor) {
1899 alfonx 530 this.mapBackgroundColor = bgColor;
1900 alfonx 509 }
1901 mojays 2
1902 alfonx 509 /**
1903 alfonx 530 * Set the BufferedImage to use as a flaoting icon in the lower right corner
1904     *
1905     * @param mapImageIcon
1906     * <code>null</code> is allowed and deactivates this icon.
1907 alfonx 529 */
1908 alfonx 530 public void setMapImage(final BufferedImage mapImage) {
1909     this.mapImage = mapImage;
1910     }
1911 alfonx 529
1912     /**
1913 alfonx 530 * Sets whether a layer is regarded or ignored on {@link #SELECT_TOP},
1914     * {@link #SELECT_ALL} and {@link #SELECT_ONE_FROM_TOP} actions.
1915     *
1916     * @param layer
1917     * a layer
1918     * @param selectable
1919     * if {@code false} the layer is ignored during the upper
1920     * mentioned actions. If <code>null</code>, the default (true)
1921     * will be used.
1922 alfonx 529 */
1923 alfonx 530 public void setMapLayerSelectable(final MapLayer layer,
1924     final Boolean selectable) {
1925     if (selectable == null)
1926     mapLayerSelectable.remove(layer);
1927     else
1928     mapLayerSelectable.put(layer, selectable);
1929 alfonx 144 }
1930 mojays 2
1931 alfonx 509 /**
1932 alfonx 530 * Defines an evelope of the viwable area. The JMapPane will never show
1933     * anything outside of this extend.
1934 alfonx 509 *
1935 alfonx 530 * @param maxExtend
1936     * <code>null</code> to not have this restriction.
1937 alfonx 509 */
1938 alfonx 530 public void setMaxExtend(final Envelope maxExtend) {
1939     this.maxExtend = maxExtend;
1940 alfonx 144 }
1941 mojays 2
1942 alfonx 509 /**
1943 alfonx 530 * Set the maximum allowed zoom scale. This is the smaller number value of
1944     * the two. If <code>null</code> is passed, Double.MINVALUE are used which
1945     * mean there is no restriction.
1946 alfonx 509 *
1947 alfonx 530 * @author <a href="mailto:[email protected]">Stefan Alfons
1948     * Kr&uuml;ger</a>
1949 alfonx 509 */
1950 alfonx 530 public void setMaxZoomScale(final Double maxZoomScale) {
1951     this.maxZoomScale = maxZoomScale == null ? Double.MIN_VALUE
1952     : maxZoomScale;
1953 alfonx 144 }
1954 mojays 2
1955 alfonx 530 // /** Stored the time used for the last real rendering in ms. **/
1956 alfonx 607 private long lastRenderingDuration = 1000;
1957 alfonx 530
1958 alfonx 509 /**
1959 alfonx 530 * Set the minimum (nearest) allowed zoom scale. This is the bigger number
1960     * value of the two. If <code>null</code> is passed, Double.MAXVALUE are
1961     * used which mean there is no restriction.
1962 alfonx 509 *
1963 alfonx 530 *
1964     * @author <a href="mailto:[email protected]">Stefan Alfons
1965     * Kr&uuml;ger</a>
1966 alfonx 509 */
1967 alfonx 530 public void setMinZoomScale(final Double minZoomScale) {
1968     this.minZoomScale = minZoomScale == null ? Double.MAX_VALUE
1969     : minZoomScale;
1970 alfonx 144 }
1971 mojays 2
1972 alfonx 509 /**
1973 alfonx 555 * If <code>true</code>, allow the {@link XMapPane} to process #repaint()
1974     * requests. Otherwise the map will not paint anything and not start any
1975     * rendering {@link Thread}s.
1976 alfonx 509 */
1977 alfonx 530 public void setPainting(final boolean b) {
1978     acceptsRepaintCalls = b;
1979 alfonx 555 if (acceptsRepaintCalls == true)
1980     repaint();
1981 alfonx 530 }
1982 mojays 2
1983 alfonx 530 private void setRendererHints(final Map<Object, Object> rendererHints) {
1984 alfonx 533 if (rendererHints != null)
1985     this.rendererHints = rendererHints;
1986 alfonx 144 }
1987 alfonx 513
1988 alfonx 509 /**
1989 alfonx 530 * Enables/Disables the ZOOM Mouse Listener. Upates the Cursor and stops the
1990     * repaint Timer if
1991     *
1992     * @param state
1993 alfonx 509 */
1994 alfonx 632 @Deprecated
1995 alfonx 530 public void setState(final int state) {
1996     this.state = state;
1997 mojays 2
1998 alfonx 649 // throw new RuntimeException("Old concept.. migrate to new concept!");
1999 alfonx 509
2000 alfonx 649 // xMapPaneMouseListener.setEnabled((state == ZOOM_IN
2001     // || state == ZOOM_OUT || state == PAN));
2002    
2003 alfonx 530 // Je nach Aktion den Cursor umsetzen
2004 alfonx 644 updateCursor();
2005 alfonx 509 }
2006 alfonx 649
2007     public void configureMouse(MouseInputType type, XMapPaneAction action) {
2008     xMapPaneMouseListener.actions.put(type, action);
2009 alfonx 632 }
2010 alfonx 504
2011 alfonx 509 /**
2012 alfonx 530 * Standardmaessig wird der Cursor automatisch je nach MapPane-Aktion (Zoom,
2013     * Auswahl, ...) gesetzt. Mit dieser Methode kann ein statischer Cursor
2014     * gesetzt werden, der unabhaengig von der aktuellen MapPanes-Aktion
2015     * beibehalten wird. Um diesen statischen Cursor wieder zu entfernen, kann
2016     * {@code null} als Parameter uebergeben werden
2017 alfonx 509 *
2018 alfonx 530 * @param cursor
2019     * Cursor
2020 alfonx 509 */
2021 alfonx 530 public void setStaticCursor(final Cursor cursor) {
2022     this.staticCursor = cursor;
2023     if (cursor != null)
2024     super.setCursor(cursor);
2025 alfonx 509 }
2026 alfonx 431
2027 alfonx 509 /**
2028     * Starts rendering on one or two threads
2029     */
2030     private void startRendering() {
2031    
2032 alfonx 544 if (!isWellDefined() || !acceptsRepaintCalls) {
2033 alfonx 555 // if we are not ready to start rendering, try it again the next
2034     // time the timer is chacking the flag.
2035 alfonx 544 requestStartRendering = true;
2036 alfonx 509 return;
2037 alfonx 544 }
2038 alfonx 509
2039 alfonx 529 if (bgExecuter != null) {
2040 alfonx 509 // Stop all renderers
2041     bgExecuter.cancelTask();
2042 alfonx 524 }
2043 alfonx 509
2044 alfonx 555 localExecuter.cancelTask();
2045 alfonx 529
2046 alfonx 530 final Rectangle curPaintArea = getVisibleRect();
2047 mojays 2
2048 alfonx 509 /**
2049     * We have to set new renderer
2050     */
2051    
2052     if (getBgContext() != null) {
2053 alfonx 533 bgRenderer.setJava2DHints(getJava2dHints());
2054     bgRenderer.setRendererHints(getRendererHints());
2055    
2056 alfonx 529 // bgExecuter = new RenderingExecutor();
2057     // LOGGER.debug("starting bg renderer:");
2058     // // /* System.out.println("rendering"); */
2059     // final GTRenderer createGTRenderer = GTUtil.createGTRenderer(
2060     // bgContext, getRendererHints());
2061     // createGTRenderer.setJava2DHints(getJava2dHints());
2062     // bgExecuter.submit(getBgContext().getAreaOfInterest(),
2063     // curPaintArea,
2064     // (Graphics2D) getBgImage().getGraphics(), createGTRenderer);
2065 alfonx 509 }
2066    
2067 alfonx 551 if (getMapContext() != null) {
2068 alfonx 529 // localExecuter = new RenderingExecutor(this, 150l);
2069 alfonx 530 // LOGGER.debug("starting local renderer:");
2070    
2071 alfonx 560 getLocalRenderer().setJava2DHints(getJava2dHints());
2072     getLocalRenderer().setRendererHints(getRendererHints());
2073 alfonx 529
2074 alfonx 544 final boolean submitted = localExecuter.submit(getMapArea(),
2075 alfonx 533 curPaintArea, (Graphics2D) getLocalImage().getGraphics(),
2076 alfonx 560 getLocalRenderer());
2077 alfonx 530 if (submitted)
2078     repaintTimer.restart();
2079     else
2080 alfonx 544 requestStartRendering = true; // Try to start rendering
2081     // again in
2082 alfonx 530 // a moment
2083 alfonx 509 }
2084    
2085 alfonx 514 updateCursor();
2086 alfonx 144 }
2087 mojays 2
2088 alfonx 607 private RenderingHints getJava2dHints() {
2089     return java2dHints;
2090     }
2091    
2092 alfonx 509 /**
2093 alfonx 530 * Transformiert einen Geo-Koordinaten-Bereich in Fenster-Koordinaten.
2094 alfonx 509 *
2095 alfonx 530 * @param ox
2096     * X-Koordinate der VON-Position
2097     * @param oy
2098     * Y-Koordinate der VON-Position
2099     * @param px
2100     * X-Koordinate der BIS-Position
2101     * @param py
2102     * Y-Koordinate der BIS-Position
2103     * @param winToGeotransform
2104     * Eine Window to Geo transform. If <code>null</code>,
2105     * {@link #getScreenToWorld()} is used.
2106 alfonx 509 */
2107 alfonx 530 public Envelope tranformGeoToWindow(final double ox, final double oy,
2108 alfonx 539 final double px, final double py) {
2109     final AffineTransform at = getWorldToScreenTransform();
2110 alfonx 530 Point2D geoO;
2111 alfonx 539 // try {
2112     geoO = at.transform(new Point2D.Double(ox, oy), null);
2113     final Point2D geoP = at.transform(new Point2D.Double(px, py), null);
2114     return new Envelope(geoO.getX(), geoP.getX(), geoO.getY(), geoP.getY());
2115     // } catch (final NoninvertibleTransformException e) {
2116     // LOGGER.error(e);
2117     // return new Envelope(ox, oy, px, py);
2118     // }
2119 alfonx 144 }
2120 mojays 2
2121 alfonx 509 /**
2122 alfonx 530 * Transformiert einen Fenster-Koordinaten-Bereich in Geo-Koordinaten.
2123 alfonx 509 *
2124 alfonx 530 * @param ox
2125     * X-Koordinate der VON-Position
2126     * @param oy
2127     * Y-Koordinate der VON-Position
2128     * @param px
2129     * X-Koordinate der BIS-Position
2130     * @param py
2131     * Y-Koordinate der BIS-Position
2132 alfonx 509 */
2133 alfonx 530 public Envelope tranformWindowToGeo(final int ox, final int oy,
2134     final int px, final int py) {
2135     final AffineTransform at = getScreenToWorld();
2136     final Point2D geoO = at.transform(new Point2D.Double(ox, oy), null);
2137     final Point2D geoP = at.transform(new Point2D.Double(px, py), null);
2138 alfonx 543
2139 alfonx 539 // Mmmmm... don't really understand why its x,x,y,y
2140 alfonx 543 // return new Envelope(geoO.getX(), geoP.getX(), geoO.getY(),
2141     // geoP.getY());
2142     return new Envelope(new Coordinate(geoO.getX(), geoO.getY()),
2143     new Coordinate(geoP.getX(), geoP.getY()));
2144 alfonx 144 }
2145 mojays 2
2146 alfonx 509 /**
2147 alfonx 530 * Will update the cursor. If all rendering is finished also stops the
2148     * {@link #repaintTimer}
2149 alfonx 509 */
2150 alfonx 530 public void updateCursor() {
2151 mojays 2
2152 alfonx 530 // if the renderers have stopped, also stop the timer that is updating
2153     // the final image
2154     if (bgExecuter != null && bgExecuter.isRunning()
2155 alfonx 555 || localExecuter.isRunning()) {
2156     setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
2157 alfonx 530 return;
2158     } else {
2159     // Allow one last rendering
2160     if (repaintTimer.isRunning()) {
2161 alfonx 544 // System.out.println("one last rendering....");
2162 alfonx 530 repaintTimer.stop();
2163     updateFinalImage();
2164     repaint();
2165     }
2166 alfonx 144 }
2167 mojays 2
2168 alfonx 530 // wenn manueller Cursor gesetzt ist, dann diesen verwenden (unabhaengig
2169     // von der aktuellen Aktion
2170     if (this.staticCursor != null) {
2171     setCursor(staticCursor);
2172     return;
2173     }
2174     if (getCursor() == SwingUtil.PANNING_CURSOR) {
2175     // This cursor will reset itself
2176     return;
2177     }
2178 mojays 2
2179 alfonx 530 // Set the cursor depending on what tool is in use...
2180     switch (state) {
2181     case SELECT_TOP:
2182     case SELECT_ONE_FROM_TOP:
2183     case SELECT_ALL:
2184     setCursor(SwingUtil.CROSSHAIR_CURSOR);
2185     break;
2186     case ZOOM_IN:
2187     setCursor(SwingUtil.ZOOMIN_CURSOR);
2188     break;
2189     case ZOOM_OUT:
2190     setCursor(SwingUtil.ZOOMOUT_CURSOR);
2191     break;
2192     case PAN:
2193     setCursor(SwingUtil.PAN_CURSOR);
2194     break;
2195     default:
2196     setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
2197     break;
2198     }
2199 alfonx 144 }
2200 mojays 2
2201 alfonx 509 /**
2202 alfonx 530 * The renderers are all rendering into their own {@link Image}s. This
2203     * method combines all images to one {@link #finalImage}. The
2204     * {@link #repaintTimer} is calling this method regularely to update the
2205     * {@link #finalImage} even if the renderers are still working.
2206 alfonx 509 */
2207 alfonx 530 synchronized protected Image updateFinalImage() {
2208 mojays 2
2209 alfonx 530 // Render the two map images first, into the preFinalImage
2210     if (bgExecuter != null) {
2211     final Graphics2D preFinalG = (Graphics2D) getPreFinalImage()
2212     .getGraphics();
2213     preFinalG.setBackground(getMapBackgroundColor());
2214 mojays 2
2215 alfonx 530 preFinalG.drawImage(getBgImage(), 0, 0, getMapBackgroundColor(),
2216     null);
2217 mojays 2
2218 alfonx 530 // // Draw the local layers image
2219     preFinalG.drawImage(getLocalImage(), 0, 0, null);
2220     preFinalG.dispose();
2221 mojays 2
2222 alfonx 76 } else {
2223 alfonx 530 preFinalImage = getLocalImage();
2224 alfonx 76 }
2225 mojays 2
2226 alfonx 530 final Graphics2D finalG = getFinalImage().createGraphics();
2227     finalG.setBackground(getMapBackgroundColor());
2228 alfonx 651 finalG.drawImage(getPreFinalImage(), getImageOrigin().x, getImageOrigin().y,
2229 alfonx 530 getMapBackgroundColor(), null);
2230 mojays 2
2231 alfonx 607 // When panning, we have to clear the area around the image
2232 alfonx 651 final Rectangle painedArea = new Rectangle(getImageOrigin().x,
2233     getImageOrigin().y, getFinalImage().getWidth(), getFinalImage()
2234 alfonx 607 .getHeight());
2235     SwingUtil.clearAround(finalG, painedArea, getVisibleRect(),
2236     getMapBackgroundColor());
2237 alfonx 414
2238 alfonx 651 // addGadgets(finalG, false);
2239 alfonx 414
2240 alfonx 530 finalG.dispose();
2241 alfonx 414
2242 alfonx 530 return finalImage;
2243 alfonx 76 }
2244    
2245 alfonx 144 /**
2246 alfonx 530 * Paints some optional stuff into the given {@link Graphics2D}. Usually
2247     * called as the last layer when {@link #updateFinalImage()}
2248 alfonx 533 *
2249     * @param forceWait
2250     * if <code>true</code>, a Wait-message will be painted even
2251     * though the rendering threads may not yet have started. If
2252     * <code>false</code>, it will only depend on
2253     * {@link #localExecuter.isRunning} and #bgExecuter.isRunning
2254 alfonx 144 */
2255 alfonx 607 private void addGadgets(final Graphics2D graphics, final boolean forceWait) {
2256 mojays 2
2257 alfonx 530 // Paint a logo to the bottom right if available
2258     if (mapImage != null) {
2259 alfonx 607 final Rectangle visibleRect = getVisibleRect();
2260 alfonx 540 graphics.drawImage(mapImage, visibleRect.width
2261     - mapImage.getWidth() - 10, getVisibleRect().height
2262 alfonx 530 - mapImage.getHeight() - 10, null);
2263     }
2264 alfonx 539
2265 alfonx 533 int y = 17;
2266 mojays 2
2267 alfonx 530 // If the rendering process is still running, indicate this is the image
2268 alfonx 533 if (forceWait || bgExecuter != null && bgExecuter.isRunning()
2269 alfonx 555 || localExecuter.isRunning()) {
2270 mojays 2
2271 alfonx 539 y += 8;
2272    
2273 alfonx 530 final Color c = graphics.getColor();
2274     graphics.setFont(waitFont);
2275 alfonx 533
2276     graphics.setColor(getMapBackgroundColor());
2277     graphics.drawString(waitMsg, 5, y);
2278     graphics.setColor(getMapBackgroundColor());
2279 alfonx 539 graphics.drawString(waitMsg, 7, y + 2);
2280 alfonx 530 graphics.setColor(Color.BLACK);
2281 alfonx 539 graphics.drawString(waitMsg, 6, y + 1);
2282 mojays 2
2283 alfonx 530 graphics.setColor(c);
2284 alfonx 539
2285 alfonx 607 y += 21;
2286 alfonx 418 }
2287 alfonx 414
2288 alfonx 555 if (!renderingErrors.isEmpty() && isShowExceptions()) {
2289 alfonx 533
2290     final Color c = graphics.getColor();
2291     graphics.setFont(errorFont);
2292    
2293 alfonx 607 for (final Exception ex : renderingErrors) {
2294 alfonx 533
2295     String errStr = ex.getLocalizedMessage();
2296    
2297 alfonx 544 if (errStr == null)
2298     errStr = ex.getMessage();
2299     if (errStr == null)
2300     errStr = "unknown error: " + ex.getClass().getSimpleName();
2301    
2302 alfonx 560 graphics.setColor(getMapBackgroundColor());
2303 alfonx 533 graphics.drawString(errStr, 5, y);
2304     graphics.setColor(Color.RED);
2305     graphics.drawString(errStr, 6, y + 1);
2306    
2307     y += 19;
2308     }
2309    
2310     graphics.setColor(c);
2311     }
2312    
2313 alfonx 505 }
2314    
2315     /**
2316 alfonx 533 * Sets the {@link #mapArea} to best possibly present the given features. If
2317     * only one single point is given, the window is moved over the point.
2318 alfonx 509 *
2319 alfonx 530 * @param features
2320     * if <code>null</code> or size==0, the function doesn nothing.
2321 alfonx 509 */
2322 alfonx 530 public void zoomTo(
2323     final FeatureCollection<SimpleFeatureType, SimpleFeature> features) {
2324 alfonx 509
2325 alfonx 551 // if (!isWellDefined()) return;
2326    
2327     final CoordinateReferenceSystem mapCRS = getMapContext()
2328 alfonx 530 .getCoordinateReferenceSystem();
2329     final CoordinateReferenceSystem fCRS = features.getSchema()
2330 alfonx 607 .getCoordinateReferenceSystem();
2331 alfonx 509
2332 alfonx 551 ReferencedEnvelope _mapArea;
2333     if (mapArea == null)
2334     _mapArea = features.getBounds();
2335 alfonx 555 else
2336     _mapArea = getMapArea();
2337 alfonx 551 double width = _mapArea.getWidth();
2338     double height = _mapArea.getHeight();
2339 alfonx 530 final double ratio = height / width;
2340 alfonx 509
2341 alfonx 530 if (features == null || features.size() == 0) {
2342     // feature count == 0 Zoom to the full extend
2343 alfonx 509 return;
2344 alfonx 530 } else if (features.size() == 1) {
2345 alfonx 529
2346 alfonx 530 // feature count == 1 Just move the window to the point and zoom 'a
2347     // bit'
2348     final SimpleFeature singleFeature = features.iterator().next();
2349 alfonx 509
2350 alfonx 530 if (((Geometry) singleFeature.getDefaultGeometry())
2351     .getCoordinates().length > 1) {
2352     // System.out.println("Zoomed to only pne poylgon");
2353     // Poly
2354     // TODO max width vs. height
2355     width = features.getBounds().getWidth() * 3;
2356     height = ratio * width;
2357     } else {
2358     // System.out.println("Zoomed in a bit becasue only one point");
2359     // width *= .9;
2360     // height *= .9;
2361     }
2362 alfonx 509
2363 alfonx 530 Coordinate centre = features.getBounds().centre();
2364     if (!mapCRS.equals(fCRS)) {
2365     // only to calculations if the CRS differ
2366 alfonx 529 try {
2367 alfonx 530 MathTransform fToMap;
2368     fToMap = CRS.findMathTransform(fCRS, mapCRS);
2369     // centre is transformed to the mapCRS
2370     centre = JTS.transform(centre, null, fToMap);
2371     } catch (final FactoryException e) {
2372     LOGGER.error("Looking for a Math transform", e);
2373     } catch (final TransformException e) {
2374     LOGGER.error("Looking for a Math transform", e);
2375 alfonx 529 }
2376     }
2377 alfonx 509
2378 alfonx 530 final Coordinate newLeftBottom = new Coordinate(centre.x - width
2379     / 2., centre.y - height / 2.);
2380     final Coordinate newTopRight = new Coordinate(
2381     centre.x + width / 2., centre.y + height / 2.);
2382 alfonx 509
2383 alfonx 530 final Envelope newMapArea = new Envelope(newLeftBottom, newTopRight);
2384 alfonx 509
2385 alfonx 530 setMapArea(newMapArea);
2386 alfonx 529
2387 alfonx 530 } else {
2388     final ReferencedEnvelope fBounds = features.getBounds();
2389 alfonx 529
2390 alfonx 551 ReferencedEnvelope bounds;
2391 alfonx 530 if (!mapCRS.equals(fCRS)) {
2392 alfonx 551 bounds = JTSUtil.transformEnvelope(fBounds, mapCRS);
2393 alfonx 530 } else {
2394     bounds = fBounds;
2395     }
2396     // BB umrechnen von Layer-CRS in Map-CRS
2397 alfonx 529
2398 alfonx 530 // Expand a bit
2399     bounds.expandBy(bounds.getWidth() / 6., bounds.getHeight() / 6.);
2400 alfonx 509
2401 alfonx 530 setMapArea(bounds);
2402     }
2403 alfonx 509 }
2404    
2405     /**
2406 alfonx 530 * Zooms towards a point.
2407     *
2408     * @param center
2409     * position in window coordinates
2410     * @param zoomFactor
2411     * > 1 for zoom in, < 1 for zoom out. Default is 1.33
2412 alfonx 509 */
2413 alfonx 530 public void zoomTo(final Point center) {
2414     zoomTo(center, null);
2415 alfonx 509 }
2416    
2417     /**
2418     * Zooms towards a point.
2419     *
2420     * @param center
2421     * position in window coordinates
2422     * @param zoomFaktor
2423 alfonx 615 * > 1 for zoom out, < 1 for zoom in. Default is .5
2424 alfonx 509 */
2425     public void zoomTo(Point center, Double zoomFaktor) {
2426     if (zoomFaktor == null || zoomFaktor == 0.)
2427 alfonx 615 zoomFaktor = .5;
2428 alfonx 509
2429 alfonx 530 final Point2D gcenter = getScreenToWorld().transform(center, null);
2430 alfonx 509 center = null;
2431 alfonx 513
2432     if (Double.isNaN(gcenter.getX()) || Double.isNaN(gcenter.getY())
2433     || Double.isInfinite(gcenter.getX())
2434     || Double.isInfinite(gcenter.getY())
2435    
2436 alfonx 509 ) {
2437     // Not inside valid CRS area! cancel
2438     return;
2439     }
2440    
2441     final Envelope mapArea = getMapArea();
2442 alfonx 513
2443 alfonx 530 final Envelope newMapArea = new Envelope(mapArea);
2444 alfonx 513 newMapArea.expandBy((mapArea.getWidth() * zoomFaktor - mapArea
2445     .getWidth()) / 2., (mapArea.getHeight() * zoomFaktor - mapArea
2446     .getHeight()) / 2.);
2447 alfonx 509
2448 alfonx 607 // // Move the newMapArea above the new center if we zoom in:
2449 alfonx 615 newMapArea.translate(gcenter.getX() - mapArea.centre().x, gcenter
2450     .getY()
2451     - mapArea.centre().y);
2452 alfonx 543
2453 alfonx 509 setMapArea(newMapArea);
2454     }
2455    
2456 alfonx 553 /**
2457     * Shall non-fatal rendering exceptions be reported in the mappane or be
2458     * dropped quitely.
2459     */
2460 alfonx 607 public void setShowExceptions(final boolean showExceptions) {
2461 alfonx 553 this.showExceptions = showExceptions;
2462     }
2463    
2464     /**
2465     * Shall exceptions be reported in the mappane?
2466     */
2467     public boolean isShowExceptions() {
2468     return showExceptions;
2469     }
2470    
2471 alfonx 560 public GTRenderer getLocalRenderer() {
2472     return localRenderer;
2473     }
2474    
2475 alfonx 607 /**
2476     * Setzt den Kartenausschnitt auf die Ausdehnung eines bestimmten Layers.
2477     * Macht nichts, wenn {@code null} uebergeben wird.
2478     *
2479     * <br>
2480     *
2481     * @param layer
2482     * ein Layer
2483     */
2484     public void zoomToLayer(MapLayer layer) {
2485     if (layer == null)
2486     return;
2487     try {
2488    
2489     // BB umrechnen von Layer-CRS in Map-CRS
2490     final CoordinateReferenceSystem targetCRS = getMapContext()
2491     .getCoordinateReferenceSystem();
2492     final CoordinateReferenceSystem sourceCRS = layer
2493     .getFeatureSource().getSchema()
2494     .getCoordinateReferenceSystem();
2495    
2496     Envelope mapAreaNew;
2497     if (!CRS.equalsIgnoreMetadata(sourceCRS, targetCRS)) {
2498     mapAreaNew = JTSUtil.transformEnvelope(layer.getFeatureSource()
2499     .getBounds(), sourceCRS, targetCRS);
2500     } else {
2501     try {
2502     mapAreaNew = layer.getFeatureSource().getBounds();
2503     } catch (java.lang.IllegalArgumentException e) {
2504     LOGGER.error("Can't calc layers bounds...", e);
2505     mapAreaNew = null;
2506    
2507     /**
2508     *
2509     23.10.2009 11:20:50
2510     * org.geotools.data.shapefile.shp.PolygonHandler read
2511     * WARNUNG: only one hole in this polygon record ERROR
2512     * JMapPane zoomToLayer Zoom to layer did not terminate
2513     * correctly java.lang.IllegalArgumentException: Points of
2514     * LinearRing do not form a closed linestring at
2515     * com.vividsolutions
2516     * .jts.geom.LinearRing.validateConstruction
2517     * (LinearRing.java:105) at
2518     * com.vividsolutions.jts.geom.LinearRing
2519     * .<init>(LinearRing.java:100) at
2520     * com.vividsolutions.jts.geom
2521     * .GeometryFactory.createLinearRing
2522     * (GeometryFactory.java:339) at
2523     * org.geotools.data.shapefile.
2524     * shp.PolygonHandler.read(PolygonHandler.java:188) at
2525     * org.geotools
2526     * .data.shapefile.shp.ShapefileReader$Record.shape
2527     * (ShapefileReader.java:106) at
2528     * org.geotools.data.shapefile.
2529     * ShapefileAttributeReader.next(
2530     * ShapefileAttributeReader.java:157) at
2531     * org.geotools.data.shapefile
2532     * .indexed.IndexedShapefileAttributeReader
2533     * .next(IndexedShapefileAttributeReader.java:122) at
2534     * org.geotools
2535     * .data.FIDFeatureReader.next(FIDFeatureReader.java:96) at
2536     * org.geotools.data.FIDFeatureReader.next(FIDFeatureReader.
2537     * java:55) at org.geotools.data.MaxFeatureReader.next(
2538     * MaxFeatureReader.java:61) at
2539     * org.geotools.data.MaxFeatureReader
2540     * .next(MaxFeatureReader.java:61)
2541     **/
2542     }
2543     }
2544    
2545     // Kartenbereich um 10% vergroessern, damit z.B. auch ein
2546     // Punkt-Layer,
2547     // welches nur aus 2 Punnkten besteht, sichtbar ist (Punkte liegen
2548     // sonst
2549     // genau auf dem Rand der angezeigten Flaeche)
2550    
2551     if (mapAreaNew != null) {
2552     mapAreaNew.expandBy(mapAreaNew.getWidth() * 0.1, mapAreaNew
2553     .getHeight() * 0.1);
2554     setMapArea(mapAreaNew);
2555     } else {
2556     LOGGER
2557     .warn("Couldn't transformEnvelope when zooming to the layer");
2558     }
2559     } catch (Exception err) {
2560     LOGGER.error("Zoom to layer did not terminate correctly", err);
2561     }
2562     }
2563    
2564     /**
2565     * Zooms the {@link SelectableXMapPane} to the {@link Envelope} of a layer.
2566     *
2567     * <br>
2568     * A refresh of the map is not done automatically
2569     *
2570     * @param index
2571     * Index of the {@link MapLayer} in the {@link MapContext} (from
2572     * back to top)
2573     *
2574     * @author <a href="mailto:[email protected]">Stefan Alfons
2575     * Kr&uuml;ger</a>
2576     */
2577     public void zoomToLayer(int index) {
2578     final MapContext context = getMapContext();
2579     if (context != null)
2580     zoomToLayer(context.getLayer(index));
2581     }
2582    
2583     /**
2584     * Zooms the {@link SelectableXMapPane} to the {@link Envelope} of the
2585     * selected layer. The layer is selected by the idx, counting from front to
2586     * back, like humans would expect in a {@link JList}
2587     *
2588     * <br>
2589     * A refresh of the map is not done automatically
2590     *
2591     *
2592     *
2593     * @param index
2594     * Reverse index of the {@link MapLayer} in the
2595     * {@link MapContext}
2596     *
2597     * @author <a href="mailto:[email protected]">Stefan Alfons
2598     * Kr&uuml;ger</a>
2599     */
2600     public void zoomToLayerIdxReverse(int index) {
2601     zoomToLayer(getMapContext().getLayerCount() - 1 - index);
2602     }
2603    
2604     /**
2605     * Aktiviert oder deaktiviert das AntiAliasing for diese
2606     * {@link SelectableXMapPane}. AntiALiasing ist besonders fuer
2607     * Textbeschriftung sehr schoen, verbraucht aber auch mehr Performance.
2608     *
2609     * @author <a href="mailto:[email protected]">Stefan Alfons
2610     * Kr&uuml;ger</a>
2611     */
2612     public void setAntiAliasing(final boolean aa) {
2613     // LOGGER.info("Setting AntiAliasing for this JMapPane to " + aa);
2614     RenderingHints java2DHints = java2dHints;
2615     if (java2DHints == null) {
2616     java2DHints = GeoTools.getDefaultHints();
2617     }
2618 alfonx 620
2619 alfonx 607 java2DHints.put(RenderingHints.KEY_ANTIALIASING,
2620     aa ? RenderingHints.VALUE_ANTIALIAS_ON
2621     : RenderingHints.VALUE_ANTIALIAS_OFF);
2622     java2DHints.put(RenderingHints.KEY_TEXT_ANTIALIASING,
2623     aa ? RenderingHints.VALUE_TEXT_ANTIALIAS_ON
2624     : RenderingHints.VALUE_TEXT_ANTIALIAS_OFF);
2625     java2DHints.put(RenderingHints.KEY_RENDERING,
2626     aa ? RenderingHints.VALUE_RENDER_QUALITY
2627     : RenderingHints.VALUE_RENDER_SPEED);
2628 alfonx 620
2629 alfonx 607 }
2630    
2631 alfonx 651 public Point getImageOrigin() {
2632     return imageOrigin;
2633     }
2634    
2635 mojays 2 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26