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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 680 - (hide annotations)
Fri Feb 5 19:46:10 2010 UTC (15 years ago) by alfonx
File size: 82921 byte(s)
added a cool blink(FeatureCollection) method

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26