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

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

Parent Directory Parent Directory | Revision Log Revision Log


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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26