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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26