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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26