/[schmitzm]/branches/1.0-gt2-2.6/src/skrueger/geotools/XMapPane.java
ViewVC logotype

Annotation of /branches/1.0-gt2-2.6/src/skrueger/geotools/XMapPane.java

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26