/[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 436 - (hide annotations)
Mon Oct 5 11:54:12 2009 UTC (15 years, 4 months ago) by mojays
Original Path: branches/1.0-gt2-2.6/src/gtmig/org/geotools/swing/JMapPane.java
File size: 34617 byte(s)
Removed some annoying debug messages in GT-JMapPane
New util method JTSUtil.expandEnvelope(..)
JMapPane.getMaxExtend(..) creates a 10% expanded envelope to show the complete map with "some" surrounding

1 mojays 2 /*
2     * GeoTools - OpenSource mapping toolkit
3     * http://geotools.org
4     * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
5     *
6     * This library is free software; you can redistribute it and/or
7     * modify it under the terms of the GNU Lesser General Public
8     * License as published by the Free Software Foundation;
9     * version 2.1 of the License.
10     *
11     * This library is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14     * Lesser General Public License for more details.
15     */
16 alfonx 388 package gtmig.org.geotools.swing;
17 mojays 2
18     /**
19     * <b>Xulu:<br>
20 mojays 114 * Code taken from gt-2.4.5 to make some changes (marked with {@code xulu}),
21 mojays 2 * which can not be realized in a subclass:</b>
22     * <ul>
23     * <li>{@link #getMapArea()} declared as {@code final}<li>
24     * <li>some variables declared as {@code protected}</li>
25     * <li>minimal/maximal zoom scale</li>
26     * <li>zoom in and zoom out via mouse click realized by setMapArea(..)</li>
27     * </ul>
28     * <br><br>
29     * A simple map container that is a JPanel with a map in. provides simple
30     * pan,zoom, highlight and selection The mappane stores an image of the map
31     * (drawn from the context) and an image of the slected feature(s) to speed up
32     * rendering of the highlights. Thus the whole map is only redrawn when the bbox
33     * changes, selection is only redrawn when the selected feature changes.
34     *
35     *
36     * @author Ian Turton
37     *
38     */
39    
40     import java.awt.Color;
41     import java.awt.Cursor;
42     import java.awt.Graphics;
43     import java.awt.Graphics2D;
44     import java.awt.LayoutManager;
45     import java.awt.Rectangle;
46     import java.awt.event.InputEvent;
47     import java.awt.event.MouseEvent;
48     import java.awt.event.MouseListener;
49     import java.awt.event.MouseMotionListener;
50     import java.awt.image.BufferedImage;
51     import java.beans.PropertyChangeEvent;
52     import java.beans.PropertyChangeListener;
53     import java.io.IOException;
54     import java.util.Date;
55     import java.util.HashMap;
56     import java.util.Map;
57    
58     import javax.swing.JPanel;
59    
60     import org.apache.log4j.Logger;
61 mojays 436 import org.geotools.geometry.jts.ReferencedEnvelope;
62 mojays 2 import org.geotools.map.MapContext;
63     import org.geotools.map.event.MapLayerListEvent;
64     import org.geotools.map.event.MapLayerListListener;
65     import org.geotools.renderer.GTRenderer;
66 alfonx 336 import org.geotools.renderer.label.LabelCacheImpl;
67 mojays 2 import org.geotools.renderer.lite.LabelCache;
68     import org.geotools.renderer.lite.StreamingRenderer;
69 alfonx 348 import org.geotools.renderer.shape.ShapefileRenderer;
70 mojays 2 import org.opengis.filter.FilterFactory2;
71     import org.opengis.referencing.crs.CoordinateReferenceSystem;
72    
73 mojays 436 import schmitzm.geotools.JTSUtil;
74 mojays 2 import schmitzm.swing.SwingUtil;
75    
76     import com.vividsolutions.jts.geom.Coordinate;
77     import com.vividsolutions.jts.geom.Envelope;
78     import com.vividsolutions.jts.geom.GeometryFactory;
79    
80     public class JMapPane extends JPanel implements MouseListener,
81 alfonx 336 MouseMotionListener, PropertyChangeListener, MapLayerListListener {
82 alfonx 144 private static Logger LOGGER = Logger.getLogger(JMapPane.class.getName());
83 alfonx 153
84 alfonx 144 private static final long serialVersionUID = -8647971481359690499L;
85 mojays 2
86 alfonx 144 public static final int Reset = 0;
87 mojays 2
88 alfonx 144 public static final int ZoomIn = 1;
89 mojays 2
90 alfonx 144 public static final int ZoomOut = 2;
91 mojays 2
92 alfonx 144 public static final int Pan = 3;
93 mojays 2
94 alfonx 144 public static final int Select = 4;
95 mojays 2
96 alfonx 144 /**
97     * what renders the map
98     */
99     GTRenderer renderer;
100 mojays 2
101 alfonx 144 /**
102     * the map context to render
103     */
104     MapContext context;
105 mojays 2
106 alfonx 144 /**
107     * the area of the map to draw
108     */
109     protected Envelope mapArea;
110 mojays 2
111 alfonx 144 /**
112     * the size of the pane last time we drew
113     */
114     protected Rectangle oldRect = null;
115 mojays 2
116 alfonx 144 /**
117     * the last map area drawn.
118     */
119     protected Envelope oldMapArea = null;
120 mojays 2
121 alfonx 144 /**
122     * the base image of the map
123     */
124     protected BufferedImage baseImage, panningImage;
125 mojays 2
126 alfonx 144 /**
127     * a factory for filters
128     */
129     FilterFactory2 ff;
130 mojays 2
131 alfonx 144 /**
132     * a factory for geometries
133     */
134     GeometryFactory gf = new GeometryFactory(); // FactoryFinder.getGeometryFactory(null);
135 mojays 2
136 alfonx 144 private int state = ZoomIn;
137 mojays 2
138 alfonx 144 /**
139     * how far to zoom in or out
140     */
141     private double zoomFactor = 2.0;
142 mojays 2
143 alfonx 144 boolean changed = true;
144 mojays 2
145 alfonx 336 LabelCache labelCache = new LabelCacheImpl();
146 mojays 2
147 alfonx 144 protected boolean reset = false;
148 mojays 2
149 alfonx 144 int startX;
150 mojays 2
151 alfonx 144 int startY;
152 mojays 2
153 alfonx 414 /**
154     * If not <code>null</code>, the {@link JMapPane} will not allow to zoom/pan
155     * out of that area
156     **/
157     private Envelope maxExtend = null;
158    
159     // /**
160     // * Is max. 1 or 0 of the 2 axised allowed to extend the maxExtend? If
161     // * <code>true</code> the extends has to be fully inside maxExtend
162     // **/
163     // boolean maxExtendForceMode = true;
164    
165 alfonx 144 private boolean clickable;
166 mojays 2
167 alfonx 144 int lastX;
168 mojays 2
169 alfonx 144 int lastY;
170 mojays 2
171 alfonx 144 private Double maxZoomScale = Double.MIN_VALUE;
172     private Double minZoomScale = Double.MAX_VALUE;
173 mojays 2
174 alfonx 144 /**
175     * Wenn true, dann wurde PANNING via mouseDraged-Events begonnen. Dieses
176     * Flag wird benutzt um nur einmal den passenden Cursor nur einmal zu
177     * setzen.
178     */
179 mojays 2 private boolean panning_started = false;
180    
181 alfonx 144 public JMapPane() {
182     this(null, true, null, null);
183     }
184 mojays 2
185 alfonx 144 /**
186     * create a basic JMapPane
187     *
188     * @param render
189     * - how to draw the map
190     * @param context
191     * - the map context to display
192     */
193 alfonx 307 public JMapPane(final GTRenderer render, final MapContext context) {
194 alfonx 144 this(null, true, render, context);
195     }
196 mojays 2
197 alfonx 144 /**
198     * full constructor extending JPanel
199     *
200     * @param layout
201     * - layout (probably shouldn't be set)
202     * @param isDoubleBuffered
203     * - a Swing thing I don't really understand
204     * @param render
205     * - what to draw the map with
206     * @param context
207     * - what to draw
208     */
209 alfonx 307 public JMapPane(final LayoutManager layout, final boolean isDoubleBuffered,
210     final GTRenderer render, final MapContext context) {
211 alfonx 144 super(layout, isDoubleBuffered);
212 mojays 2
213 alfonx 144 ff = (FilterFactory2) org.geotools.factory.CommonFactoryFinder
214     .getFilterFactory(null);
215     setRenderer(render);
216 mojays 2
217 alfonx 144 setContext(context);
218 mojays 2
219 alfonx 144 this.addMouseListener(this);
220     this.addMouseMotionListener(this);
221     setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
222     }
223 mojays 2
224 alfonx 144 /**
225     * get the renderer
226     */
227     public GTRenderer getRenderer() {
228     return renderer;
229     }
230 mojays 2
231 alfonx 307 public void setRenderer(final GTRenderer renderer) {
232 alfonx 414 Map<Object, Object> hints = new HashMap<Object, Object>();
233    
234 alfonx 307 this.renderer = renderer;
235 alfonx 414
236     if (renderer instanceof StreamingRenderer
237     || renderer instanceof ShapefileRenderer) {
238 alfonx 144 hints = renderer.getRendererHints();
239     if (hints == null) {
240 alfonx 414 hints = new HashMap<Object, Object>();
241 alfonx 144 }
242     if (hints.containsKey(StreamingRenderer.LABEL_CACHE_KEY)) {
243     labelCache = (LabelCache) hints
244     .get(StreamingRenderer.LABEL_CACHE_KEY);
245     } else {
246     hints.put(StreamingRenderer.LABEL_CACHE_KEY, labelCache);
247     }
248 alfonx 307
249     hints.put("memoryPreloadingEnabled", Boolean.TRUE);
250 alfonx 414
251 alfonx 144 renderer.setRendererHints(hints);
252     }
253 mojays 2
254 alfonx 414 // this.highlightRenderer = new StreamingRenderer();
255     // this.selectionRenderer = new StreamingRenderer();
256 mojays 2
257 alfonx 414 // highlightRenderer.setRendererHints(hints);
258     // selectionRenderer.setRendererHints(hints);
259 mojays 2
260 alfonx 414 // renderer.setRendererHints(hints);
261    
262 alfonx 144 if (this.context != null) {
263     this.renderer.setContext(this.context);
264     }
265     }
266 mojays 2
267 alfonx 144 public MapContext getContext() {
268     return context;
269     }
270 mojays 2
271 alfonx 307 public void setContext(final MapContext context) {
272 alfonx 144 if (this.context != null) {
273     this.context.removeMapLayerListListener(this);
274     }
275 mojays 2
276 alfonx 144 this.context = context;
277 mojays 2
278 alfonx 144 if (context != null) {
279     this.context.addMapLayerListListener(this);
280     }
281 mojays 2
282 alfonx 144 if (renderer != null) {
283     renderer.setContext(this.context);
284     }
285     }
286 mojays 2
287 alfonx 144 public Envelope getMapArea() {
288     return mapArea;
289     }
290 mojays 2
291 alfonx 307 public void setMapArea(final Envelope mapArea) {
292 alfonx 144 this.mapArea = mapArea;
293     }
294 mojays 2
295 alfonx 144 public int getState() {
296     return state;
297     }
298 mojays 2
299 alfonx 307 public void setState(final int state) {
300 alfonx 144 this.state = state;
301 mojays 2
302 alfonx 144 // System.out.println("State: " + state);
303     }
304 mojays 2
305 alfonx 144 public double getZoomFactor() {
306     return zoomFactor;
307     }
308 mojays 2
309 alfonx 307 public void setZoomFactor(final double zoomFactor) {
310 alfonx 144 this.zoomFactor = zoomFactor;
311     }
312 mojays 2
313 alfonx 307 protected void paintComponent(final Graphics g) {
314 alfonx 144 super.paintComponent(g);
315 mojays 2
316 alfonx 144 if ((renderer == null) || (mapArea == null)) {
317     return;
318     }
319 mojays 2
320 alfonx 307 final Rectangle r = getBounds();
321     final Rectangle dr = new Rectangle(r.width, r.height);
322 mojays 2
323 alfonx 144 if (!r.equals(oldRect) || reset) {
324     if (!r.equals(oldRect) && (mapArea == null)) {
325     try {
326     mapArea = context.getLayerBounds();
327 alfonx 307 } catch (final IOException e) {
328 alfonx 336 LOGGER.warn("context.getLayerBounds()", e);
329 alfonx 144 }
330     }
331 mojays 2
332 alfonx 144 if (mapArea != null) {
333     /* either the viewer size has changed or we've done a reset */
334     changed = true; /* note we need to redraw */
335     reset = false; /* forget about the reset */
336     oldRect = r; /* store what the current size is */
337 mojays 2
338 alfonx 418 mapArea = fixAspectRatio(r, mapArea, false);
339 alfonx 144 }
340     }
341 mojays 2
342 alfonx 144 if (!mapArea.equals(oldMapArea)) { /* did the map extent change? */
343     changed = true;
344     oldMapArea = mapArea;
345     // when we tell the context that the bounds have changed WMSLayers
346     // can refresh them selves
347     context.setAreaOfInterest(mapArea, context
348     .getCoordinateReferenceSystem());
349     }
350 mojays 2
351 alfonx 414 if (changed) { /* if the map changed then redraw */
352 alfonx 144 changed = false;
353     baseImage = new BufferedImage(dr.width, dr.height,
354     BufferedImage.TYPE_INT_ARGB);
355 mojays 2
356 alfonx 307 final Graphics2D ig = baseImage.createGraphics();
357 alfonx 144 /* System.out.println("rendering"); */
358 alfonx 414 if (renderer.getContext() != null)
359 alfonx 307 renderer.setContext(context);
360 alfonx 144 labelCache.clear(); // work around anoying labelcache bug
361 mojays 2
362 alfonx 144 // draw the map
363     renderer.paint((Graphics2D) ig, dr, mapArea);
364 mojays 2
365 alfonx 167 // TODO nur machen, wenn panning beginnt
366 alfonx 144 panningImage = new BufferedImage(dr.width, dr.height,
367     BufferedImage.TYPE_INT_RGB);
368 mojays 2
369 alfonx 144 }
370 mojays 2
371 alfonx 144 ((Graphics2D) g).drawImage(baseImage, 0, 0, this);
372     }
373 mojays 2
374 alfonx 418 /**
375     * Returns an {@link Envelope} that has the same aspect ratio as the given rectangle
376     * @param grow
377     * If <code>true</code>, than the area will be enlarged to match
378     * the aspect ratio. If <code>false</code>, it will only shrink.
379     */
380     private Envelope fixAspectRatio(final Rectangle r, final Envelope mapArea,
381     boolean grow) {
382 alfonx 431
383     if (mapArea == null) {
384     LOGGER.warn("mapArea has been null in method fixAspectRatio, returning an unmodified ");
385     }
386 mojays 2
387 alfonx 307 final double mapWidth = mapArea.getWidth(); /* get the extent of the map */
388     final double mapHeight = mapArea.getHeight();
389     final double scaleX = r.getWidth() / mapArea.getWidth(); /*
390 alfonx 414 * calculate the
391     * new scale
392     */
393 mojays 2
394 alfonx 307 final double scaleY = r.getHeight() / mapArea.getHeight();
395 alfonx 144 double scale = 1.0; // stupid compiler!
396 mojays 2
397 alfonx 418 if ((grow && scaleX < scaleY) || (!grow && scaleX > scaleY)) {
398 alfonx 144 scale = scaleX;
399     } else {
400     scale = scaleY;
401     }
402 mojays 2
403 alfonx 144 /* calculate the difference in width and height of the new extent */
404 alfonx 307 final double deltaX = /* Math.abs */((r.getWidth() / scale) - mapWidth);
405     final double deltaY = /* Math.abs */((r.getHeight() / scale) - mapHeight);
406 mojays 2
407 alfonx 144 /*
408     * System.out.println("delta x " + deltaX);
409     * System.out.println("delta y " + deltaY);
410     */
411 mojays 2
412 alfonx 144 /* create the new extent */
413 alfonx 414 final Coordinate ll = new Coordinate(
414     mapArea.getMinX() - (deltaX / 2.0), mapArea.getMinY()
415     - (deltaY / 2.0));
416     final Coordinate ur = new Coordinate(
417     mapArea.getMaxX() + (deltaX / 2.0), mapArea.getMaxY()
418     + (deltaY / 2.0));
419 mojays 2
420 alfonx 144 return new Envelope(ll, ur);
421     }
422 mojays 2
423 alfonx 307 public void mouseClicked(final MouseEvent e) {
424 alfonx 414 if (mapArea == null)
425     return;
426 alfonx 144 // System.out.println("before area "+mapArea+"\nw:"+mapArea.getWidth()+"
427     // h:"+mapArea.getHeight());
428 alfonx 307 final Rectangle bounds = this.getBounds();
429     final double x = (double) (e.getX());
430     final double y = (double) (e.getY());
431     final double width = mapArea.getWidth();
432     final double height = mapArea.getHeight();
433 alfonx 144 // xulu.sc
434     // double width2 = mapArea.getWidth() / 2.0;
435     // double height2 = mapArea.getHeight() / 2.0;
436 alfonx 307 final double width2 = width / 2.0;
437     final double height2 = height / 2.0;
438 alfonx 144 // xulu.ec
439 alfonx 414 final double mapX = ((x * width) / (double) bounds.width)
440     + mapArea.getMinX();
441 alfonx 307 final double mapY = (((bounds.getHeight() - y) * height) / (double) bounds.height)
442 alfonx 144 + mapArea.getMinY();
443 mojays 2
444 alfonx 144 /*
445     * System.out.println(""+x+"->"+mapX);
446     * System.out.println(""+y+"->"+mapY);
447     */
448 mojays 2
449 alfonx 144 /*
450     * Coordinate ll = new Coordinate(mapArea.getMinX(), mapArea.getMinY());
451     * Coordinate ur = new Coordinate(mapArea.getMaxX(), mapArea.getMaxY());
452     */
453     double zlevel = 1.0;
454 mojays 2
455 alfonx 144 switch (state) {
456     case Pan:
457     zlevel = 1.0;
458     // xulu.sc SK: return here.. a mouselistener is managing the PANNING
459     // break;
460     return;
461     // xulu.ec
462     case ZoomIn:
463     zlevel = zoomFactor;
464 mojays 2
465 alfonx 144 break;
466 mojays 2
467 alfonx 144 case ZoomOut:
468     zlevel = 1.0 / zoomFactor;
469 mojays 2
470 alfonx 144 break;
471 alfonx 414 //
472     // case Select:
473     // doSelection(mapX, mapY, selectionLayer);
474     //
475     // return;
476 mojays 2
477 alfonx 144 default:
478     return;
479     }
480 mojays 2
481 alfonx 307 final Coordinate ll = new Coordinate(mapX - (width2 / zlevel), mapY
482 alfonx 144 - (height2 / zlevel));
483 alfonx 307 final Coordinate ur = new Coordinate(mapX + (width2 / zlevel), mapY
484 alfonx 144 + (height2 / zlevel));
485     // xulu.sc SK: Check for min/max scale
486     // mapArea = new Envelope(ll, ur);
487     final Envelope newMapArea = new Envelope(ll, ur);
488     setMapArea(bestAllowedMapArea(newMapArea));
489     // xulu.ec
490 mojays 2
491 alfonx 144 // sk.ec
492 mojays 2
493 alfonx 144 // System.out.println("after area "+mapArea+"\nw:"+mapArea.getWidth()+"
494     // h:"+mapArea.getHeight());
495     repaint();
496     }
497 mojays 2
498 alfonx 307 public void mouseEntered(final MouseEvent e) {
499 alfonx 144 }
500 mojays 2
501 alfonx 307 public void mouseExited(final MouseEvent e) {
502 alfonx 144 }
503 mojays 2
504 alfonx 307 public void mousePressed(final MouseEvent e) {
505 alfonx 144 startX = e.getX();
506     startY = e.getY();
507     lastX = 0;
508     lastY = 0;
509     }
510 mojays 2
511 alfonx 307 public void mouseReleased(final MouseEvent e) {
512     final int endX = e.getX();
513     final int endY = e.getY();
514 mojays 2
515 alfonx 144 processDrag(startX, startY, endX, endY, e);
516     lastX = 0;
517     lastY = 0;
518 mojays 2
519 alfonx 144 /**
520     * Es wird nicht (mehr) gepannt!
521     */
522     panning_started = false;
523     }
524 mojays 2
525 alfonx 307 public void mouseDragged(final MouseEvent e) {
526     final Graphics graphics = this.getGraphics();
527     final int x = e.getX();
528     final int y = e.getY();
529 mojays 2
530 alfonx 144 if ((state == JMapPane.Pan)
531     || ((e.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {
532     /**
533     * SK: Der Cursor wird auf PANNING gesetzt.
534     */
535     if (panning_started == false) {
536     panning_started = true;
537     setCursor(SwingUtil.PANNING_CURSOR);
538     }
539 mojays 2
540 alfonx 144 // move the image with the mouse
541     if ((lastX > 0) && (lastY > 0)) {
542 alfonx 307 final int dx = lastX - startX;
543     final int dy = lastY - startY;
544 alfonx 144 // System.out.println("translate "+dx+","+dy);
545     final Graphics2D g2 = panningImage.createGraphics();
546     g2.setBackground(new Color(240, 240, 240)); // TODO richtige
547 alfonx 414 // farbe? am besten
548     // vom L&F die
549     // hintergrundfarbe
550     // auslesen...
551    
552 mojays 2 g2.clearRect(0, 0, this.getWidth(), this.getHeight());
553     g2.drawImage(baseImage, dx, dy, this);
554 alfonx 144 graphics.drawImage(panningImage, 0, 0, this);
555     }
556 mojays 2
557 alfonx 144 lastX = x;
558     lastY = y;
559     } else
560 mojays 2
561 alfonx 144 if ((state == JMapPane.ZoomIn) || (state == JMapPane.ZoomOut)) {
562 mojays 2
563 alfonx 144 graphics.setXORMode(Color.WHITE);
564 mojays 2
565 alfonx 144 if ((lastX > 0) && (lastY > 0)) {
566     drawRectangle(graphics);
567     }
568 mojays 2
569 alfonx 144 // draw new box
570     lastX = x;
571     lastY = y;
572     drawRectangle(graphics);
573 alfonx 414 }
574     // else if (state == JMapPane.Select && selectionLayer != null) {
575     //
576     // // construct a new bbox filter
577     // final Rectangle bounds = this.getBounds();
578     //
579     // final double mapWidth = mapArea.getWidth();
580     // final double mapHeight = mapArea.getHeight();
581     //
582     // final double x1 = ((this.startX * mapWidth) / (double) bounds.width)
583     // + mapArea.getMinX();
584     // final double y1 = (((bounds.getHeight() - this.startY) * mapHeight) /
585     // (double) bounds.height)
586     // + mapArea.getMinY();
587     // final double x2 = ((x * mapWidth) / (double) bounds.width)
588     // + mapArea.getMinX();
589     // final double y2 = (((bounds.getHeight() - y) * mapHeight) / (double)
590     // bounds.height)
591     // + mapArea.getMinY();
592     // final double left = Math.min(x1, x2);
593     // final double right = Math.max(x1, x2);
594     // final double bottom = Math.min(y1, y2);
595     // final double top = Math.max(y1, y2);
596     //
597     // String name = selectionLayer.getFeatureSource().getSchema()
598     // .getDefaultGeometry().getName();
599     //
600     // if (name == "") {
601     // name = "the_geom";
602     // }
603     // final Filter bb = ff.bbox(ff.property(name), left, bottom, right,
604     // top,
605     // getContext().getCoordinateReferenceSystem().toString());
606     // if (selectionManager != null) {
607     // selectionManager.selectionChanged(this, bb);
608     // }
609     //
610     // graphics.setXORMode(Color.green);
611     //
612     // /*
613     // * if ((lastX > 0) && (lastY > 0)) { drawRectangle(graphics); }
614     // */
615     //
616     // // draw new box
617     // lastX = x;
618     // lastY = y;
619     // drawRectangle(graphics);
620     // }
621 mojays 2
622 alfonx 144 }
623 mojays 2
624 alfonx 144 // sk.cs
625     // private void processDrag(int x1, int y1, int x2, int y2) {
626     // sk.ce
627     protected void processDrag(final int x1, final int y1, final int x2,
628 alfonx 307 final int y2, final MouseEvent e) {
629 mojays 2
630 alfonx 431
631 alfonx 144 /****
632 alfonx 431 * If no layers exist, we ignore the drag.
633 alfonx 144 */
634 alfonx 431 if (context.getLayerCount() <= 0) {
635 alfonx 144 return;
636 alfonx 431 }
637    
638 alfonx 144 // System.out.println("processing drag from " + x1 + "," + y1 + " -> "
639     // + x2 + "," + y2);
640     if ((x1 == x2) && (y1 == y2)) {
641     if (isClickable()) {
642     mouseClicked(new MouseEvent(this, 0, new Date().getTime(), 0,
643     x1, y1, y2, false));
644     }
645 mojays 2
646 alfonx 144 return;
647     }
648 mojays 2
649 alfonx 307 final Rectangle bounds = this.getBounds();
650 mojays 2
651 alfonx 307 final double mapWidth = mapArea.getWidth();
652     final double mapHeight = mapArea.getHeight();
653 mojays 2
654 alfonx 307 final double startX = ((x1 * mapWidth) / (double) bounds.width)
655 alfonx 144 + mapArea.getMinX();
656 alfonx 307 final double startY = (((bounds.getHeight() - y1) * mapHeight) / (double) bounds.height)
657 alfonx 144 + mapArea.getMinY();
658 alfonx 307 final double endX = ((x2 * mapWidth) / (double) bounds.width)
659 alfonx 144 + mapArea.getMinX();
660 alfonx 307 final double endY = (((bounds.getHeight() - y2) * mapHeight) / (double) bounds.height)
661 alfonx 144 + mapArea.getMinY();
662 mojays 2
663 alfonx 144 if ((state == JMapPane.Pan) || (e.getButton() == MouseEvent.BUTTON3)) {
664     // move the image with the mouse
665     // calculate X offsets from start point to the end Point
666 alfonx 307 final double deltaX1 = endX - startX;
667 mojays 2
668 alfonx 144 // System.out.println("deltaX " + deltaX1);
669     // new edges
670 alfonx 307 final double left = mapArea.getMinX() - deltaX1;
671     final double right = mapArea.getMaxX() - deltaX1;
672 mojays 2
673 alfonx 144 // now for Y
674 alfonx 307 final double deltaY1 = endY - startY;
675 mojays 2
676 alfonx 144 // System.out.println("deltaY " + deltaY1);
677 alfonx 307 final double bottom = mapArea.getMinY() - deltaY1;
678     final double top = mapArea.getMaxY() - deltaY1;
679     final Coordinate ll = new Coordinate(left, bottom);
680     final Coordinate ur = new Coordinate(right, top);
681 alfonx 144 // xulu.sc
682     // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));
683 alfonx 431
684    
685 alfonx 418 setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));
686 alfonx 144 // xulu.ec
687     } else if (state == JMapPane.ZoomIn) {
688 mojays 2
689 alfonx 144 // Zu kleine Flächen sollen nicht gezoomt werden.
690     // sk.bc
691     if ((Math.abs(x1 - x2) * Math.abs(y2 - y1)) < 150)
692     return;
693     // sk.ec
694 mojays 2
695 alfonx 144 drawRectangle(this.getGraphics());
696     // make the dragged rectangle (in map coords) the new BBOX
697 alfonx 307 final double left = Math.min(startX, endX);
698     final double right = Math.max(startX, endX);
699     final double bottom = Math.min(startY, endY);
700     final double top = Math.max(startY, endY);
701     final Coordinate ll = new Coordinate(left, bottom);
702     final Coordinate ur = new Coordinate(right, top);
703 alfonx 144 // xulu.sc
704 mojays 2
705 alfonx 144 // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));
706     setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));
707 mojays 2
708 alfonx 144 // sk.sc
709 alfonx 414 // {
710     // // SK tries to paint a preview of the zoom ;-9 aha.... well
711     // Graphics2D graphics = (Graphics2D) JMapPane.this.getGraphics();
712     // graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
713     // RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);
714     // graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
715     // RenderingHints.VALUE_ANTIALIAS_OFF);
716     // graphics.setRenderingHint(RenderingHints.KEY_RENDERING,
717     // RenderingHints.VALUE_RENDER_SPEED);
718     // graphics.drawImage(baseImage, 0, 0, JMapPane.this.getWidth(),
719     // JMapPane.this.getHeight(), x1, y1, x2, y2, null);
720     // }
721 alfonx 144 // xulu.ec
722     } else if (state == JMapPane.ZoomOut) {
723     drawRectangle(this.getGraphics());
724 mojays 2
725 alfonx 144 // make the dragged rectangle in screen coords the new map size?
726 alfonx 307 final double left = Math.min(startX, endX);
727     final double right = Math.max(startX, endX);
728     final double bottom = Math.min(startY, endY);
729     final double top = Math.max(startY, endY);
730     final double nWidth = (mapWidth * mapWidth) / (right - left);
731     final double nHeight = (mapHeight * mapHeight) / (top - bottom);
732     final double deltaX1 = left - mapArea.getMinX();
733     final double nDeltaX1 = (deltaX1 * nWidth) / mapWidth;
734     final double deltaY1 = bottom - mapArea.getMinY();
735     final double nDeltaY1 = (deltaY1 * nHeight) / mapHeight;
736     final Coordinate ll = new Coordinate(mapArea.getMinX() - nDeltaX1,
737 alfonx 144 mapArea.getMinY() - nDeltaY1);
738 alfonx 307 final double deltaX2 = mapArea.getMaxX() - right;
739     final double nDeltaX2 = (deltaX2 * nWidth) / mapWidth;
740     final double deltaY2 = mapArea.getMaxY() - top;
741     final double nDeltaY2 = (deltaY2 * nHeight) / mapHeight;
742     final Coordinate ur = new Coordinate(mapArea.getMaxX() + nDeltaX2,
743 alfonx 144 mapArea.getMaxY() + nDeltaY2);
744     // xulu.sc
745     // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));
746     setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));
747 mojays 2
748 alfonx 144 // xulu.ec
749 alfonx 414 }
750     // else if (state == JMapPane.Select && selectionLayer != null) {
751     // final double left = Math.min(startX, endX);
752     // final double right = Math.max(startX, endX);
753     // final double bottom = Math.min(startY, endY);
754     // final double top = Math.max(startY, endY);
755     //
756     // String name = selectionLayer.getFeatureSource().getSchema()
757     // .getDefaultGeometry().getLocalName();
758     //
759     // if (name == "") {
760     // name = "the_geom";
761     // }
762     // final Filter bb = ff.bbox(ff.property(name), left, bottom, right,
763     // top,
764     // getContext().getCoordinateReferenceSystem().toString());
765     // // System.out.println(bb.toString());
766     // if (selectionManager != null) {
767     // selectionManager.selectionChanged(this, bb);
768     // }
769     // /*
770     // * FeatureCollection fc; selection = null; try { fc =
771     // * selectionLayer.getFeatureSource().getFeatures(bb); selection =
772     // * fc; } catch (IOException e) { e.printStackTrace(); }
773     // */
774     // }
775 mojays 2
776 alfonx 144 // xulu.so
777     // setMapArea(mapArea);
778     // xulu.eo
779     repaint();
780     }
781 mojays 2
782 alfonx 144 private boolean isClickable() {
783     return clickable;
784     }
785 mojays 2
786 alfonx 414 //
787     // private org.geotools.styling.Style setupStyle(final int type, final Color
788     // color) {
789     // final StyleFactory sf = org.geotools.factory.CommonFactoryFinder
790     // .getStyleFactory(null);
791     // final StyleBuilder sb = new StyleBuilder();
792     //
793     // org.geotools.styling.Style s = sf.createStyle();
794     // s.setTitle("selection");
795     //
796     // // TODO parameterise the color
797     // final PolygonSymbolizer ps = sb.createPolygonSymbolizer(color);
798     // ps.setStroke(sb.createStroke(color));
799     //
800     // final LineSymbolizer ls = sb.createLineSymbolizer(color);
801     // final Graphic h = sb.createGraphic();
802     // h.setMarks(new Mark[] { sb.createMark("square", color) });
803     //
804     // final PointSymbolizer pts = sb.createPointSymbolizer(h);
805     //
806     // // Rule r = sb.createRule(new Symbolizer[]{ps,ls,pts});
807     // switch (type) {
808     // case POLYGON:
809     // s = sb.createStyle(ps);
810     //
811     // break;
812     //
813     // case POINT:
814     // s = sb.createStyle(pts);
815     //
816     // break;
817     //
818     // case LINE:
819     // s = sb.createStyle(ls);
820     // }
821     //
822     // return s;
823     // }
824 mojays 2
825 alfonx 307 public void propertyChange(final PropertyChangeEvent evt) {
826     final String prop = evt.getPropertyName();
827 mojays 2
828 alfonx 144 if (prop.equalsIgnoreCase("crs")) {
829     context.setAreaOfInterest(context.getAreaOfInterest(),
830     (CoordinateReferenceSystem) evt.getNewValue());
831     }
832     }
833 mojays 2
834 alfonx 144 public boolean isReset() {
835     return reset;
836     }
837 mojays 2
838 alfonx 307 public void setReset(final boolean reset) {
839 alfonx 144 this.reset = reset;
840     }
841 mojays 2
842 alfonx 307 public void layerAdded(final MapLayerListEvent event) {
843 alfonx 144 changed = true;
844 mojays 2
845 alfonx 144 if (context.getLayers().length == 1) { // the first one
846 mojays 2
847 alfonx 144 try {
848     // xulu.sc
849     // mapArea = context.getLayerBounds();
850     mapArea = context.getAreaOfInterest();
851     if (mapArea == null)
852     mapArea = context.getLayerBounds();
853     // xulu.ec
854 alfonx 307 } catch (final IOException e) {
855 alfonx 144 // TODO Auto-generated catch block
856     e.printStackTrace();
857     }
858 mojays 2
859 alfonx 144 reset = true;
860     }
861 mojays 2
862 alfonx 144 repaint();
863     }
864 mojays 2
865 alfonx 307 public void layerRemoved(final MapLayerListEvent event) {
866 alfonx 144 changed = true;
867     repaint();
868     }
869 mojays 2
870 alfonx 307 public void layerChanged(final MapLayerListEvent event) {
871 alfonx 144 changed = true;
872     // System.out.println("layer changed - repaint");
873     repaint();
874     }
875 mojays 2
876 alfonx 307 public void layerMoved(final MapLayerListEvent event) {
877 alfonx 144 changed = true;
878     repaint();
879     }
880 mojays 2
881 alfonx 307 protected void drawRectangle(final Graphics graphics) {
882 alfonx 144 // undraw last box/draw new box
883 alfonx 307 final int left = Math.min(startX, lastX);
884     final int right = Math.max(startX, lastX);
885     final int top = Math.max(startY, lastY);
886     final int bottom = Math.min(startY, lastY);
887     final int width = right - left;
888     final int height = top - bottom;
889 alfonx 144 // System.out.println("drawing rect("+left+","+bottom+","+ width+","+
890     // height+")");
891     graphics.drawRect(left, bottom, width, height);
892     }
893 mojays 2
894 alfonx 144 /**
895     * if clickable is set to true then a single click on the map pane will zoom
896     * or pan the map.
897     *
898     * @param clickable
899     */
900 alfonx 307 public void setClickable(final boolean clickable) {
901 alfonx 144 this.clickable = clickable;
902     }
903 mojays 2
904 alfonx 307 public void mouseMoved(final MouseEvent e) {
905 alfonx 144 }
906    
907     // xulu.sn
908 alfonx 76 /**
909     * Korrigiert den {@link Envelope} aka {@code mapArea} auf die beste
910     * erlaubte Flaeche damit die Massstabsbeschaenkungen noch eingehalten
911     * werden, FALLS der uebergeben Envelope nicht schon gueltig sein sollte.<br/>
912     * Since 21. April 09: Before thecalculation starts, the aspect ratio is
913     * corrected. This change implies, that setMapArea() will most of the time
914     * not allow setting to a wrong aspectRatio.
915     *
916     * @author <a href="mailto:[email protected]">Stefan Alfons
917     * Kr&uuml;ger</a>
918     */
919     public Envelope bestAllowedMapArea(Envelope env) {
920     if (getWidth() == 0)
921     return env;
922     if (env == null)
923     return env;
924 mojays 2
925 alfonx 414 Envelope newArea = null;
926    
927 alfonx 76 /**
928 alfonx 144 * Correct the aspect Ratio before we check the rest. Otherwise we might
929     * easily fail.
930 alfonx 76 */
931 alfonx 418 env = fixAspectRatio(this.getBounds(), env, false);
932 mojays 2
933 alfonx 307 final double scale = env.getWidth() / getWidth();
934     final double centerX = env.getMinX() + env.getWidth() / 2.;
935     final double centerY = env.getMinY() + env.getHeight() / 2.;
936 alfonx 414 double newWidth2 = 0;
937     double newHeight2 = 0;
938 alfonx 76 if (scale < getMaxZoomScale()) {
939     // ****************************************************************************
940     // Wir zoomen weiter rein als erlaubt => Anpassen des envelope
941     // ****************************************************************************
942     newWidth2 = getMaxZoomScale() * getWidth() / 2.;
943     newHeight2 = getMaxZoomScale() * getHeight() / 2.;
944     } else if (scale > getMinZoomScale()) {
945     // ****************************************************************************
946     // Wir zoomen weiter raus als erlaubt => Anpassen des envelope
947     // ****************************************************************************
948     newWidth2 = getMinZoomScale() * getWidth() / 2.;
949     newHeight2 = getMinZoomScale() * getHeight() / 2.;
950     } else {
951     // ****************************************************************************
952     // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen
953     // ****************************************************************************
954 alfonx 414 newArea = env;
955 alfonx 76 }
956 mojays 2
957 alfonx 414 if (newArea == null) {
958 mojays 2
959 alfonx 414 final Coordinate ll = new Coordinate(centerX - newWidth2, centerY
960     - newHeight2);
961     final Coordinate ur = new Coordinate(centerX + newWidth2, centerY
962     + newHeight2);
963    
964     newArea = new Envelope(ll, ur);
965     }
966    
967 alfonx 418 Envelope maxAllowedExtend = getMaxExtend();
968     while (maxAllowedExtend != null && !maxAllowedExtend.contains(newArea)) {
969     /*
970     * If a maxExtend is set, we have to honour that...
971     */
972 alfonx 414
973 alfonx 418 // Exceeds top? Move down and maybe cut
974     if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
975     double divY = newArea.getMaxY() - maxAllowedExtend.getMaxY();
976 mojays 436 // LOGGER.debug("Moving area down by " + divY);
977 alfonx 414
978 alfonx 418 newArea = new Envelope(new Coordinate(newArea.getMinX(),
979     newArea.getMinY() - divY), new Coordinate(newArea
980     .getMaxX(), newArea.getMaxY() - divY));
981 alfonx 414
982 alfonx 418 if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
983 mojays 436 // LOGGER.debug("Now it exeeds the bottom border.. cut!");
984 alfonx 418 // And cut the bottom if it moved out of the area
985 alfonx 414 newArea = new Envelope(new Coordinate(newArea.getMinX(),
986 alfonx 418 maxAllowedExtend.getMinY()), new Coordinate(newArea
987     .getMaxX(), newArea.getMaxY()));
988 alfonx 414
989 mojays 436 // LOGGER.debug("and fix aspect ratio");
990 alfonx 414
991 alfonx 418 newArea = fixAspectRatio(this.getBounds(), newArea, false);
992 alfonx 414 }
993 alfonx 418 }
994 alfonx 414
995 alfonx 418 // Exceeds bottom? Move up and maybe cut
996     if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
997     double divY = newArea.getMinY() - maxAllowedExtend.getMinY();
998 mojays 436 // LOGGER.debug("Moving area up by " + divY);
999 alfonx 414
1000 alfonx 418 newArea = new Envelope(new Coordinate(newArea.getMinX(),
1001     newArea.getMinY() - divY), new Coordinate(newArea
1002     .getMaxX(), newArea.getMaxY() - divY));
1003    
1004     if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
1005     LOGGER.debug("Now it exeeds the top border.. cut!");
1006     // And cut the bottom if it moved out of the area
1007 alfonx 414 newArea = new Envelope(new Coordinate(newArea.getMinX(),
1008 alfonx 418 newArea.getMinY()), new Coordinate(newArea
1009     .getMaxX(), maxAllowedExtend.getMaxY()));
1010 alfonx 414
1011 alfonx 418 LOGGER.debug("and fix aspect ratio");
1012 alfonx 414
1013 alfonx 418 newArea = fixAspectRatio(this.getBounds(), newArea, false);
1014 alfonx 414 }
1015 alfonx 418 }
1016 alfonx 414
1017 alfonx 418 // Exceeds to the right? move and maybe cut
1018     if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
1019 alfonx 414
1020 alfonx 418 // Move left..
1021     double divX = newArea.getMaxX() - maxAllowedExtend.getMaxX();
1022 mojays 436 // LOGGER.debug("Moving area left by " + divX);
1023 alfonx 414
1024 alfonx 418 newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
1025     newArea.getMinY()), new Coordinate(newArea.getMaxX()
1026     - divX, newArea.getMaxY()));
1027 alfonx 414
1028 alfonx 418 if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
1029     LOGGER.debug("Now it exeeds the left border.. cut!");
1030     // And cut the left if it moved out of the area
1031 alfonx 420 newArea = new Envelope(new Coordinate(maxAllowedExtend.getMinX(),
1032 alfonx 418 newArea.getMinY()), new Coordinate(newArea
1033     .getMaxX(), newArea.getMaxY()));
1034 alfonx 414
1035 alfonx 418 LOGGER.debug("and fix aspect ratio");
1036 alfonx 414
1037 alfonx 418 newArea = fixAspectRatio(this.getBounds(), newArea, false);
1038 alfonx 414 }
1039 alfonx 418 }
1040 alfonx 414
1041 alfonx 418 // Exceeds to the left? move and maybe cut
1042     if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
1043 alfonx 414
1044 alfonx 418 // Move right..
1045     double divX = newArea.getMinX() - maxAllowedExtend.getMinX();
1046 mojays 436 // LOGGER.debug("Moving area right by " + divX);
1047 alfonx 414
1048 alfonx 418 newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
1049     newArea.getMinY()), new Coordinate(newArea.getMaxX()
1050     - divX, newArea.getMaxY()));
1051 alfonx 414
1052 alfonx 418 if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
1053     LOGGER.debug("Now it exeeds the right border.. cut!");
1054     // And cut the left if it moved out of the area
1055     newArea = new Envelope(new Coordinate(newArea.getMinX(),
1056     newArea.getMinY()), new Coordinate(maxAllowedExtend
1057     .getMaxX(), newArea.getMaxY()));
1058 alfonx 414
1059 alfonx 418 LOGGER.debug("and fix aspect ratio");
1060 alfonx 414
1061 alfonx 418 newArea = fixAspectRatio(this.getBounds(), newArea, false);
1062 alfonx 414 }
1063     }
1064    
1065     }
1066    
1067     return newArea;
1068 alfonx 76 }
1069    
1070 alfonx 144 /**
1071     * Retuns the minimum allowed zoom scale. This is the bigger number value of
1072     * the two. Defaults to {@link Double}.MAX_VALUE
1073     *
1074     * @author <a href="mailto:[email protected]">Stefan Alfons
1075     * Kr&uuml;ger</a>
1076     */
1077     public Double getMinZoomScale() {
1078     return minZoomScale;
1079     }
1080 mojays 2
1081 alfonx 144 /**
1082     * Retuns the maximum allowed zoom scale. This is the smaller number value
1083     * of the two. Defaults to {@link Double}.MIN_VALUE
1084     *
1085     * @author <a href="mailto:[email protected]">Stefan Alfons
1086     * Kr&uuml;ger</a>
1087     */
1088     public Double getMaxZoomScale() {
1089     return maxZoomScale;
1090     }
1091 mojays 2
1092 alfonx 144 /**
1093     * Set the maximum allowed zoom scale. This is the smaller number value of
1094     * the two.
1095     *
1096     * @author <a href="mailto:[email protected]">Stefan Alfons
1097     * Kr&uuml;ger</a>
1098     */
1099 alfonx 307 public void setMaxZoomScale(final Double maxZoomScale) {
1100 alfonx 144 this.maxZoomScale = maxZoomScale;
1101     }
1102 mojays 2
1103 alfonx 144 /**
1104     * Set the minimum (nearest) allowed zoom scale. This is the bigger number
1105     * value of the two.
1106     *
1107     * @author <a href="mailto:[email protected]">Stefan Alfons
1108     * Kr&uuml;ger</a>
1109     */
1110 alfonx 307 public void setMinZoomScale(final Double minZoomScale) {
1111 alfonx 144 this.minZoomScale = minZoomScale;
1112     }
1113 mojays 2
1114 alfonx 414 /**
1115     * Defines an evelope of the viwable area. The JMapPane will never show
1116     * anything outside of this extend.
1117     *
1118     * @param maxExtend
1119     * <code>null</code> to not have this restriction.
1120     */
1121     public void setMaxExtend(Envelope maxExtend) {
1122     this.maxExtend = maxExtend;
1123     }
1124    
1125     /**
1126     * Returns the evelope of the viewable area. The JMapPane will never show
1127 alfonx 418 * anything outside of this extend. If this has been set to
1128     * <code>null</code> via {@link #setMaxExtend(Envelope)}, it tries to return
1129     * quickly the context's bounds. It it takes to long to determine the
1130     * context bounds, <code>null</code> is returned.
1131 alfonx 414 *
1132     * @param maxExtend
1133     * <code>null</code> to not have this restriction.
1134     */
1135    
1136     public Envelope getMaxExtend() {
1137 alfonx 418 if (maxExtend == null) {
1138     try {
1139 mojays 436 return fixAspectRatio(
1140     this.getBounds(),
1141     // Kartenbereich um 10% vergroessern
1142     JTSUtil.expandEnvelope(context.getLayerBounds(), 0.1),
1143     true
1144     );
1145 alfonx 418 } catch (IOException e) {
1146 mojays 436 LOGGER.warn(
1147 alfonx 418 "maxExtend == null; faild to getLayerBounds of context",
1148     e);
1149     }
1150     }
1151 alfonx 414 return maxExtend;
1152     }
1153    
1154 mojays 2 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26