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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/src/org/geotools/gui/swing/JMapPane.java revision 207 by alfonx, Thu Jul 9 20:14:21 2009 UTC branches/1.0-gt2-2.6/src/gtmig/org/geotools/swing/JMapPane.java revision 497 by alfonx, Fri Oct 23 18:43:58 2009 UTC
# Line 13  Line 13 
13   *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU   *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14   *    Lesser General Public License for more details.   *    Lesser General Public License for more details.
15   */   */
16  package org.geotools.gui.swing;  package gtmig.org.geotools.swing;
17    
18  /**  /**
19   * <b>Xulu:<br>   * <b>Xulu:<br>
# Line 58  import java.util.Map; Line 58  import java.util.Map;
58  import javax.swing.JPanel;  import javax.swing.JPanel;
59    
60  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
 import org.geotools.feature.FeatureCollection;  
 import org.geotools.filter.IllegalFilterException;  
 import org.geotools.gui.swing.event.HighlightChangeListener;  
 import org.geotools.gui.swing.event.HighlightChangedEvent;  
 import org.geotools.gui.swing.event.SelectionChangeListener;  
 import org.geotools.gui.swing.event.SelectionChangedEvent;  
 import org.geotools.map.DefaultMapContext;  
61  import org.geotools.map.MapContext;  import org.geotools.map.MapContext;
 import org.geotools.map.MapLayer;  
62  import org.geotools.map.event.MapLayerListEvent;  import org.geotools.map.event.MapLayerListEvent;
63  import org.geotools.map.event.MapLayerListListener;  import org.geotools.map.event.MapLayerListListener;
 import org.geotools.referencing.crs.DefaultGeographicCRS;  
64  import org.geotools.renderer.GTRenderer;  import org.geotools.renderer.GTRenderer;
65    import org.geotools.renderer.label.LabelCacheImpl;
66  import org.geotools.renderer.lite.LabelCache;  import org.geotools.renderer.lite.LabelCache;
 import org.geotools.renderer.lite.LabelCacheDefault;  
67  import org.geotools.renderer.lite.StreamingRenderer;  import org.geotools.renderer.lite.StreamingRenderer;
 import org.geotools.styling.Graphic;  
 import org.geotools.styling.LineSymbolizer;  
 import org.geotools.styling.Mark;  
 import org.geotools.styling.PointSymbolizer;  
 import org.geotools.styling.PolygonSymbolizer;  
 import org.geotools.styling.Style;  
 import org.geotools.styling.StyleBuilder;  
 import org.geotools.styling.StyleFactory;  
 import org.opengis.filter.Filter;  
68  import org.opengis.filter.FilterFactory2;  import org.opengis.filter.FilterFactory2;
69  import org.opengis.referencing.crs.CoordinateReferenceSystem;  import org.opengis.referencing.crs.CoordinateReferenceSystem;
70    
71    import schmitzm.geotools.JTSUtil;
72  import schmitzm.swing.SwingUtil;  import schmitzm.swing.SwingUtil;
73    
74  import com.vividsolutions.jts.geom.Coordinate;  import com.vividsolutions.jts.geom.Coordinate;
75  import com.vividsolutions.jts.geom.Envelope;  import com.vividsolutions.jts.geom.Envelope;
 import com.vividsolutions.jts.geom.Geometry;  
76  import com.vividsolutions.jts.geom.GeometryFactory;  import com.vividsolutions.jts.geom.GeometryFactory;
77    
78  public class JMapPane extends JPanel implements MouseListener,  public class JMapPane extends JPanel implements MouseListener,
79                  MouseMotionListener, HighlightChangeListener, SelectionChangeListener,                  MouseMotionListener, PropertyChangeListener, MapLayerListListener {
80                  PropertyChangeListener, MapLayerListListener {          private static Logger LOGGER = Logger.getLogger(JMapPane.class);
         private static Logger LOGGER = Logger.getLogger(JMapPane.class.getName());  
81    
82          private static final long serialVersionUID = -8647971481359690499L;          private static final long serialVersionUID = -8647971481359690499L;
83    
# Line 110  public class JMapPane extends JPanel imp Line 91  public class JMapPane extends JPanel imp
91    
92          public static final int Select = 4;          public static final int Select = 4;
93    
         private static final int POLYGON = 0;  
   
         private static final int LINE = 1;  
   
         private static final int POINT = 2;  
   
94          /**          /**
95           * what renders the map           * what renders the map
96           */           */
97          GTRenderer renderer;          GTRenderer renderer;
98    
         private GTRenderer highlightRenderer, selectionRenderer;  
   
99          /**          /**
100           * the map context to render           * the map context to render
101           */           */
102          MapContext context;          MapContext context;
103    
         private MapContext selectionContext;  
   
104          /**          /**
105           * the area of the map to draw           * the area of the map to draw
106           */           */
         // xulu.sc  
         // Envelope mapArea;  
107          protected Envelope mapArea;          protected Envelope mapArea;
         // xulu.ec  
108    
109          /**          /**
110           * the size of the pane last time we drew           * the size of the pane last time we drew
111           */           */
         // xulu.sc  
         // private Rectangle oldRect = null;  
112          protected Rectangle oldRect = null;          protected Rectangle oldRect = null;
         // xulu.ec  
113    
114          /**          /**
115           * the last map area drawn.           * the last map area drawn.
116           */           */
         // xulu.sc  
         // private Envelope oldMapArea = null;  
117          protected Envelope oldMapArea = null;          protected Envelope oldMapArea = null;
         // xulu.ec  
118    
119          /**          /**
120           * the base image of the map           * the base image of the map
121           */           */
122          protected BufferedImage baseImage, panningImage;          protected BufferedImage baseImage, panningImage;
         // SK: private BufferedImage baseImage, panningImage;  
   
         /**  
          * image of selection  
          */  
         private BufferedImage selectImage;  
   
         /**  
          * style for selected items  
          */  
         private Style selectionStyle;  
   
         /**  
          * layer that selection works on  
          */  
         private MapLayer selectionLayer;  
   
         /**  
          * layer that highlight works on  
          */  
         private MapLayer highlightLayer;  
   
         /**  
          * the object which manages highlighting  
          */  
         private HighlightManager highlightManager;  
   
         /**  
          * is highlighting on or off  
          */  
         private boolean highlight = true;  
123    
124          /**          /**
125           * a factory for filters           * a factory for filters
# Line 200  public class JMapPane extends JPanel imp Line 131  public class JMapPane extends JPanel imp
131           */           */
132          GeometryFactory gf = new GeometryFactory(); // FactoryFinder.getGeometryFactory(null);          GeometryFactory gf = new GeometryFactory(); // FactoryFinder.getGeometryFactory(null);
133    
         /**  
          * the collections of features to be selected or highlighted  
          */  
         FeatureCollection selection;  
   
         /**  
          * the collections of features to be selected or highlighted  
          */  
         FeatureCollection highlightFeature;  
   
134          private int state = ZoomIn;          private int state = ZoomIn;
135    
136          /**          /**
# Line 217  public class JMapPane extends JPanel imp Line 138  public class JMapPane extends JPanel imp
138           */           */
139          private double zoomFactor = 2.0;          private double zoomFactor = 2.0;
140    
         Style lineHighlightStyle;  
   
         Style pointHighlightStyle;  
   
         Style polygonHighlightStyle;  
   
         Style polygonSelectionStyle;  
   
         Style pointSelectionStyle;  
   
         Style lineSelectionStyle;  
   
141          boolean changed = true;          boolean changed = true;
142    
143          LabelCache labelCache = new LabelCacheDefault();          LabelCache labelCache = new LabelCacheImpl();
144    
         // xulu.sc  
         // private boolean reset = false;  
145          protected boolean reset = false;          protected boolean reset = false;
         // xulu.ec  
146    
147          int startX;          int startX;
148    
149          int startY;          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;          private boolean clickable;
164    
165          int lastX;          int lastX;
166    
167          int lastY;          int lastY;
168    
         private SelectionManager selectionManager;  
         // xulu.sn  
169          private Double maxZoomScale = Double.MIN_VALUE;          private Double maxZoomScale = Double.MIN_VALUE;
170          private Double minZoomScale = Double.MAX_VALUE;          private Double minZoomScale = Double.MAX_VALUE;
         // xulu.en  
171    
         // sk.sn  
172          /**          /**
173           * Wenn true, dann wurde PANNING via mouseDraged-Events begonnen. Dieses           * Wenn true, dann wurde PANNING via mouseDraged-Events begonnen. Dieses
174           * Flag wird benutzt um nur einmal den passenden Cursor nur einmal zu           * Flag wird benutzt um nur einmal den passenden Cursor nur einmal zu
# Line 262  public class JMapPane extends JPanel imp Line 176  public class JMapPane extends JPanel imp
176           */           */
177          private boolean panning_started = false;          private boolean panning_started = false;
178    
         // sk.en  
   
179          public JMapPane() {          public JMapPane() {
180                  this(null, true, null, null);                  this(null, true, null, null);
181          }          }
# Line 276  public class JMapPane extends JPanel imp Line 188  public class JMapPane extends JPanel imp
188           * @param context           * @param context
189           *            - the map context to display           *            - the map context to display
190           */           */
191          public JMapPane(GTRenderer render, MapContext context) {          public JMapPane(final GTRenderer render, final MapContext context) {
192                  this(null, true, render, context);                  this(null, true, render, context);
193          }          }
194    
# Line 292  public class JMapPane extends JPanel imp Line 204  public class JMapPane extends JPanel imp
204           * @param context           * @param context
205           *            - what to draw           *            - what to draw
206           */           */
207          public JMapPane(LayoutManager layout, boolean isDoubleBuffered,          public JMapPane(final LayoutManager layout, final boolean isDoubleBuffered,
208                          GTRenderer render, MapContext context) {                          final GTRenderer render, final MapContext context) {
209                  super(layout, isDoubleBuffered);                  super(layout, isDoubleBuffered);
210    
211                  ff = (FilterFactory2) org.geotools.factory.CommonFactoryFinder                  ff = (FilterFactory2) org.geotools.factory.CommonFactoryFinder
# Line 304  public class JMapPane extends JPanel imp Line 216  public class JMapPane extends JPanel imp
216    
217                  this.addMouseListener(this);                  this.addMouseListener(this);
218                  this.addMouseMotionListener(this);                  this.addMouseMotionListener(this);
                 setHighlightManager(new HighlightManager(highlightLayer));  
                 setSelectionManager(new SelectionManager(selectionLayer));  
                 lineHighlightStyle = setupStyle(LINE, Color.red);  
   
                 pointHighlightStyle = setupStyle(POINT, Color.red);  
   
                 polygonHighlightStyle = setupStyle(POLYGON, Color.red);  
   
                 polygonSelectionStyle = setupStyle(POLYGON, Color.cyan);  
   
                 pointSelectionStyle = setupStyle(POINT, Color.cyan);  
   
                 lineSelectionStyle = setupStyle(LINE, Color.cyan);  
219                  setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));                  setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
220          }          }
221    
# Line 327  public class JMapPane extends JPanel imp Line 226  public class JMapPane extends JPanel imp
226                  return renderer;                  return renderer;
227          }          }
228    
229          public void setRenderer(GTRenderer renderer) {          public void setRenderer(final GTRenderer renderer) {
230                  Map hints = new HashMap();                  Map<Object, Object> hints = new HashMap<Object, Object>();
231                  if (renderer instanceof StreamingRenderer) {  
232                    this.renderer = renderer;
233    //MS: Apply hint also for ShapeFileRenderer
234    //              if (renderer instanceof StreamingRenderer) {
235                          hints = renderer.getRendererHints();                          hints = renderer.getRendererHints();
236                          if (hints == null) {                          if (hints == null) {
237                                  hints = new HashMap();                                  hints = new HashMap<Object, Object>();
238                          }                          }
239                          if (hints.containsKey(StreamingRenderer.LABEL_CACHE_KEY)) {                          if (hints.containsKey(StreamingRenderer.LABEL_CACHE_KEY)) {
240                                  labelCache = (LabelCache) hints                                  labelCache = (LabelCache) hints
# Line 340  public class JMapPane extends JPanel imp Line 242  public class JMapPane extends JPanel imp
242                          } else {                          } else {
243                                  hints.put(StreamingRenderer.LABEL_CACHE_KEY, labelCache);                                  hints.put(StreamingRenderer.LABEL_CACHE_KEY, labelCache);
244                          }                          }
                         renderer.setRendererHints(hints);  
                 }  
245    
246                  this.renderer = renderer;                          hints.put("memoryPreloadingEnabled", Boolean.TRUE);
 //              this.highlightRenderer = new StreamingRenderer();  
 //              this.selectionRenderer = new StreamingRenderer();  
247    
248                  hints.put("memoryPreloadingEnabled", Boolean.FALSE);                          renderer.setRendererHints(hints);
249  //              highlightRenderer.setRendererHints(hints);  //              }
 //              selectionRenderer.setRendererHints(hints);  
250    
251                  if (this.context != null) {                  if (this.context != null) {
252                          this.renderer.setContext(this.context);                          this.renderer.setContext(this.context);
# Line 360  public class JMapPane extends JPanel imp Line 257  public class JMapPane extends JPanel imp
257                  return context;                  return context;
258          }          }
259    
260          public void setContext(MapContext context) {          public void setContext(final MapContext context) {
261                  if (this.context != null) {                  if (this.context != null) {
262                          this.context.removeMapLayerListListener(this);                          this.context.removeMapLayerListListener(this);
263                  }                  }
# Line 380  public class JMapPane extends JPanel imp Line 277  public class JMapPane extends JPanel imp
277                  return mapArea;                  return mapArea;
278          }          }
279    
280          public void setMapArea(Envelope mapArea) {          public void setMapArea(final Envelope mapArea) {
281                  this.mapArea = mapArea;                  this.mapArea = mapArea;
282          }          }
283    
# Line 388  public class JMapPane extends JPanel imp Line 285  public class JMapPane extends JPanel imp
285                  return state;                  return state;
286          }          }
287    
288          public void setState(int state) {          public void setState(final int state) {
289                  this.state = state;                  this.state = state;
290    
291                  // System.out.println("State: " + state);                  // System.out.println("State: " + state);
# Line 398  public class JMapPane extends JPanel imp Line 295  public class JMapPane extends JPanel imp
295                  return zoomFactor;                  return zoomFactor;
296          }          }
297    
298          public void setZoomFactor(double zoomFactor) {          public void setZoomFactor(final double zoomFactor) {
299                  this.zoomFactor = zoomFactor;                  this.zoomFactor = zoomFactor;
300          }          }
301    
302          public MapLayer getSelectionLayer() {          protected void paintComponent(final Graphics g) {
                 return selectionLayer;  
         }  
   
         public void setSelectionLayer(MapLayer selectionLayer) {  
                 this.selectionLayer = selectionLayer;  
                 if (selectionManager != null) {  
                         selectionManager.setSelectionLayer(selectionLayer);  
                 }  
         }  
   
         public boolean isHighlight() {  
                 return highlight;  
         }  
   
         public void setHighlight(boolean highlight) {  
                 this.highlight = highlight;  
         }  
   
         public MapLayer getHighlightLayer() {  
                 return highlightLayer;  
         }  
   
         public void setHighlightLayer(MapLayer highlightLayer) {  
                 this.highlightLayer = highlightLayer;  
   
                 if (highlightManager != null) {  
                         highlightManager.setHighlightLayer(highlightLayer);  
                 }  
         }  
   
         public HighlightManager getHighlightManager() {  
                 return highlightManager;  
         }  
   
         public void setHighlightManager(HighlightManager highlightManager) {  
                 this.highlightManager = highlightManager;  
                 this.highlightManager.addHighlightChangeListener(this);  
                 this.addMouseMotionListener(this.highlightManager);  
         }  
   
         public Style getLineHighlightStyle() {  
                 return lineHighlightStyle;  
         }  
   
         public void setLineHighlightStyle(Style lineHighlightStyle) {  
                 this.lineHighlightStyle = lineHighlightStyle;  
         }  
   
         public Style getLineSelectionStyle() {  
                 return lineSelectionStyle;  
         }  
   
         public void setLineSelectionStyle(Style lineSelectionStyle) {  
                 this.lineSelectionStyle = lineSelectionStyle;  
         }  
   
         public Style getPointHighlightStyle() {  
                 return pointHighlightStyle;  
         }  
   
         public void setPointHighlightStyle(Style pointHighlightStyle) {  
                 this.pointHighlightStyle = pointHighlightStyle;  
         }  
   
         public Style getPointSelectionStyle() {  
                 return pointSelectionStyle;  
         }  
   
         public void setPointSelectionStyle(Style pointSelectionStyle) {  
                 this.pointSelectionStyle = pointSelectionStyle;  
         }  
   
         public Style getPolygonHighlightStyle() {  
                 return polygonHighlightStyle;  
         }  
   
         public void setPolygonHighlightStyle(Style polygonHighlightStyle) {  
                 this.polygonHighlightStyle = polygonHighlightStyle;  
         }  
   
         public Style getPolygonSelectionStyle() {  
                 return polygonSelectionStyle;  
         }  
   
         public void setPolygonSelectionStyle(Style polygonSelectionStyle) {  
                 this.polygonSelectionStyle = polygonSelectionStyle;  
         }  
   
         protected void paintComponent(Graphics g) {  
303                  super.paintComponent(g);                  super.paintComponent(g);
304    
305                  if ((renderer == null) || (mapArea == null)) {                  if ((renderer == null) || (mapArea == null)) {
306                          return;                          return;
307                  }                  }
308    
309                  Rectangle r = getBounds();                  final Rectangle r = getBounds();
310                  Rectangle dr = new Rectangle(r.width, r.height);                  final Rectangle dr = new Rectangle(r.width, r.height);
311    
312                  if (!r.equals(oldRect) || reset) {                  if (!r.equals(oldRect) || reset) {
313                          if (!r.equals(oldRect) && (mapArea == null)) {                          if (!r.equals(oldRect) && (mapArea == null)) {
314                                  try {                                  try {
315                                          mapArea = context.getLayerBounds();                                          mapArea = context.getLayerBounds();
316                                  } catch (IOException e) {                                  } catch (final IOException e) {
317                                          // TODO Auto-generated catch block                                          LOGGER.warn("context.getLayerBounds()", e);
                                         e.printStackTrace();  
318                                  }                                  }
319                          }                          }
320    
# Line 517  public class JMapPane extends JPanel imp Line 324  public class JMapPane extends JPanel imp
324                                  reset = false; /* forget about the reset */                                  reset = false; /* forget about the reset */
325                                  oldRect = r; /* store what the current size is */                                  oldRect = r; /* store what the current size is */
326    
327                                  mapArea = fixAspectRatio(r, mapArea);                                  mapArea = JTSUtil.fixAspectRatio(r, mapArea, false);
328                          }                          }
329                  }                  }
330    
# Line 530  public class JMapPane extends JPanel imp Line 337  public class JMapPane extends JPanel imp
337                                          .getCoordinateReferenceSystem());                                          .getCoordinateReferenceSystem());
338                  }                  }
339    
340                  if (changed ) { /* if the map changed then redraw */                  if (changed) { /* if the map changed then redraw */
341                          changed = false;                          changed = false;
342                          baseImage = new BufferedImage(dr.width, dr.height,                          baseImage = new BufferedImage(dr.width, dr.height,
343                                          BufferedImage.TYPE_INT_ARGB);                                          BufferedImage.TYPE_INT_ARGB);
344    
345                          Graphics2D ig = baseImage.createGraphics();                          final Graphics2D ig = baseImage.createGraphics();
346                          /* System.out.println("rendering"); */                          /* System.out.println("rendering"); */
347                          renderer.setContext(context);                          if (renderer.getContext() != null)
348                                    renderer.setContext(context);
349                          labelCache.clear(); // work around anoying labelcache bug                          labelCache.clear(); // work around anoying labelcache bug
350    
351                          // draw the map                          // draw the map
# Line 550  public class JMapPane extends JPanel imp Line 358  public class JMapPane extends JPanel imp
358                  }                  }
359    
360                  ((Graphics2D) g).drawImage(baseImage, 0, 0, this);                  ((Graphics2D) g).drawImage(baseImage, 0, 0, this);
   
                 if ((selection != null) && (selection.size() > 0)) {  
                         // paint selection  
   
                         String type = selectionLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getType().getName();  
                         /* String type = selection.getDefaultGeometry().getGeometryType(); */  
                         /* System.out.println(type); */  
                         if (type == null)  
                                 type = "polygon";  
   
                         /* String type = "point"; */  
   
                         if (type.toLowerCase().endsWith("polygon")) {  
                                 selectionStyle = polygonSelectionStyle;  
                         } else if (type.toLowerCase().endsWith("point")) {  
                                 selectionStyle = pointSelectionStyle;  
                         } else if (type.toLowerCase().endsWith("line")) {  
                                 selectionStyle = lineSelectionStyle;  
                         }  
   
                         selectionContext = new DefaultMapContext(DefaultGeographicCRS.WGS84);  
   
                         selectionContext.addLayer(selection, selectionStyle);  
                         selectionRenderer.setContext(selectionContext);  
   
                         selectImage = new BufferedImage(dr.width, dr.height,  
                                         BufferedImage.TYPE_INT_ARGB);  
   
                         Graphics2D ig = selectImage.createGraphics();  
                         /* System.out.println("rendering selection"); */  
                         selectionRenderer.paint((Graphics2D) ig, dr, mapArea);  
   
                         ((Graphics2D) g).drawImage(selectImage, 0, 0, this);  
                 }  
   
                 if (highlight && (highlightFeature != null)  
                                 && (highlightFeature.size() > 0)) {  
                         /*  
                          * String type = selection.getDefaultGeometry().getGeometryType();  
                          * System.out.println(type); if(type==null) type="polygon";  
                          */  
                         String type = highlightLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getType().getName();  
                         /* String type = selection.getDefaultGeometry().getGeometryType(); */  
                         // System.out.println(type);  
                         if (type == null)  
                                 type = "polygon";  
   
                         /* String type = "point"; */  
                         Style highlightStyle = null;  
                         if (type.toLowerCase().endsWith("polygon")) {  
                                 highlightStyle = polygonHighlightStyle;  
                         } else if (type.toLowerCase().endsWith("point")) {  
                                 highlightStyle = pointHighlightStyle;  
                         } else if (type.toLowerCase().endsWith("line")) {  
                                 highlightStyle = lineHighlightStyle;  
                         }  
   
                         MapContext highlightContext = new DefaultMapContext(  
                                         DefaultGeographicCRS.WGS84);  
   
                         highlightContext.addLayer(highlightFeature, highlightStyle);  
                         highlightRenderer.setContext(highlightContext);  
   
                         /* System.out.println("rendering highlight"); */  
                         highlightRenderer.paint((Graphics2D) g, dr, mapArea);  
                 }  
361          }          }
362    
363          private Envelope fixAspectRatio(Rectangle r, Envelope mapArea) {          public void mouseClicked(final MouseEvent e) {
364                    if (mapArea == null)
                 double mapWidth = mapArea.getWidth(); /* get the extent of the map */  
                 double mapHeight = mapArea.getHeight();  
                 double scaleX = r.getWidth() / mapArea.getWidth(); /*  
                                                                                                                          * calculate the new  
                                                                                                                          * scale  
                                                                                                                          */  
   
                 double scaleY = r.getHeight() / mapArea.getHeight();  
                 double scale = 1.0; // stupid compiler!  
   
                 if (scaleX < scaleY) { /* pick the smaller scale */  
                         scale = scaleX;  
                 } else {  
                         scale = scaleY;  
                 }  
   
                 /* calculate the difference in width and height of the new extent */  
                 double deltaX = /* Math.abs */((r.getWidth() / scale) - mapWidth);  
                 double deltaY = /* Math.abs */((r.getHeight() / scale) - mapHeight);  
   
                 /*  
                  * System.out.println("delta x " + deltaX);  
                  * System.out.println("delta y " + deltaY);  
                  */  
   
                 /* create the new extent */  
                 Coordinate ll = new Coordinate(mapArea.getMinX() - (deltaX / 2.0),  
                                 mapArea.getMinY() - (deltaY / 2.0));  
                 Coordinate ur = new Coordinate(mapArea.getMaxX() + (deltaX / 2.0),  
                                 mapArea.getMaxY() + (deltaY / 2.0));  
   
                 return new Envelope(ll, ur);  
         }  
   
         public void doSelection(double x, double y, MapLayer layer) {  
   
                 Geometry geometry = gf.createPoint(new Coordinate(x, y));  
   
                 // org.opengis.geometry.Geometry geometry = new Point();  
   
                 findFeature(geometry, layer);  
   
         }  
   
         /**  
          * @param geometry  
          *            - a geometry to construct the filter with  
          * @param i  
          *            - the index of the layer to search  
          * @throws IndexOutOfBoundsException  
          */  
         private void findFeature(Geometry geometry, MapLayer layer)  
                         throws IndexOutOfBoundsException {  
                 org.opengis.filter.spatial.BinarySpatialOperator f = null;  
   
                 if ((context == null) || (layer == null)) {  
365                          return;                          return;
                 }  
   
                 try {  
                         String name = layer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getLocalName();  
   
                         if (name == "") {  
                                 name = "the_geom";  
                         }  
   
                         try {  
                                 f = ff.contains(ff.property(name), ff.literal(geometry));  
                                 if (selectionManager != null) {  
 //                                      System.out.println("selection changed");  
                                         selectionManager.selectionChanged(this, f);  
   
                                 }  
                         } catch (IllegalFilterException e) {  
                                 // TODO Auto-generated catch block  
                                 e.printStackTrace();  
                         }  
   
                         /*  
                          * // f.addLeftGeometry(ff.property(name)); //  
                          * System.out.println("looking with " + f); FeatureCollection fc =  
                          * layer.getFeatureSource().getFeatures(f);  
                          *  
                          *  
                          *  
                          * if (fcol == null) { fcol = fc;  
                          *  
                          * // here we should set the defaultgeom type } else {  
                          * fcol.addAll(fc); }  
                          */  
   
                         /*  
                          * GeometryAttributeType gat =  
                          * layer.getFeatureSource().getSchema().getDefaultGeometry();  
                          * fcol.setDefaultGeometry((Geometry)gat.createDefaultValue());  
                          */  
   
                         /*  
                          * Iterator fi = fc.iterator(); while (fi.hasNext()) { Feature feat  
                          * = (Feature) fi.next(); System.out.println("selected " +  
                          * feat.getAttribute("STATE_NAME")); }  
                          */  
                 } catch (IllegalFilterException e) {  
                         // TODO Auto-generated catch block  
                         e.printStackTrace();  
                 }  
                 return;  
         }  
   
         public void mouseClicked(MouseEvent e) {  
                 if (mapArea == null) return;  
366                  // System.out.println("before area "+mapArea+"\nw:"+mapArea.getWidth()+"                  // System.out.println("before area "+mapArea+"\nw:"+mapArea.getWidth()+"
367                  // h:"+mapArea.getHeight());                  // h:"+mapArea.getHeight());
368                  Rectangle bounds = this.getBounds();                  final Rectangle bounds = this.getBounds();
369                  double x = (double) (e.getX());                  final double x = (double) (e.getX());
370                  double y = (double) (e.getY());                  final double y = (double) (e.getY());
371                  double width = mapArea.getWidth();                  final double width = mapArea.getWidth();
372                  double height = mapArea.getHeight();                  final double height = mapArea.getHeight();
373                  // xulu.sc                  // xulu.sc
374                  // double width2 = mapArea.getWidth() / 2.0;                  // double width2 = mapArea.getWidth() / 2.0;
375                  // double height2 = mapArea.getHeight() / 2.0;                  // double height2 = mapArea.getHeight() / 2.0;
376                  double width2 = width / 2.0;                  final double width2 = width / 2.0;
377                  double height2 = height / 2.0;                  final double height2 = height / 2.0;
378                  // xulu.ec                  // xulu.ec
379                  double mapX = ((x * width) / (double) bounds.width) + mapArea.getMinX();                  final double mapX = ((x * width) / (double) bounds.width)
380                  double mapY = (((bounds.getHeight() - y) * height) / (double) bounds.height)                                  + mapArea.getMinX();
381                    final double mapY = (((bounds.getHeight() - y) * height) / (double) bounds.height)
382                                  + mapArea.getMinY();                                  + mapArea.getMinY();
383    
384                  /*                  /*
# Line 778  public class JMapPane extends JPanel imp Line 408  public class JMapPane extends JPanel imp
408                          zlevel = 1.0 / zoomFactor;                          zlevel = 1.0 / zoomFactor;
409    
410                          break;                          break;
411                    //
412                  case Select:                  // case Select:
413                          doSelection(mapX, mapY, selectionLayer);                  // doSelection(mapX, mapY, selectionLayer);
414                    //
415                          return;                  // return;
416    
417                  default:                  default:
418                          return;                          return;
419                  }                  }
420    
421                  Coordinate ll = new Coordinate(mapX - (width2 / zlevel), mapY                  final Coordinate ll = new Coordinate(mapX - (width2 / zlevel), mapY
422                                  - (height2 / zlevel));                                  - (height2 / zlevel));
423                  Coordinate ur = new Coordinate(mapX + (width2 / zlevel), mapY                  final Coordinate ur = new Coordinate(mapX + (width2 / zlevel), mapY
424                                  + (height2 / zlevel));                                  + (height2 / zlevel));
425                  // xulu.sc SK: Check for min/max scale                  // xulu.sc SK: Check for min/max scale
426                  // mapArea = new Envelope(ll, ur);                  // mapArea = new Envelope(ll, ur);
# Line 805  public class JMapPane extends JPanel imp Line 435  public class JMapPane extends JPanel imp
435                  repaint();                  repaint();
436          }          }
437    
438          public void mouseEntered(MouseEvent e) {          public void mouseEntered(final MouseEvent e) {
439          }          }
440    
441          public void mouseExited(MouseEvent e) {          public void mouseExited(final MouseEvent e) {
442          }          }
443    
444          public void mousePressed(MouseEvent e) {          public void mousePressed(final MouseEvent e) {
445                  startX = e.getX();                  startX = e.getX();
446                  startY = e.getY();                  startY = e.getY();
447                  lastX = 0;                  lastX = 0;
448                  lastY = 0;                  lastY = 0;
449          }          }
450    
451          public void mouseReleased(MouseEvent e) {          public void mouseReleased(final MouseEvent e) {
452                  int endX = e.getX();                  final int endX = e.getX();
453                  int endY = e.getY();                  final int endY = e.getY();
454    
455                  processDrag(startX, startY, endX, endY, e);                  processDrag(startX, startY, endX, endY, e);
456                  lastX = 0;                  lastX = 0;
# Line 832  public class JMapPane extends JPanel imp Line 462  public class JMapPane extends JPanel imp
462                  panning_started = false;                  panning_started = false;
463          }          }
464    
465          public void mouseDragged(MouseEvent e) {          public void mouseDragged(final MouseEvent e) {
466                  Graphics graphics = this.getGraphics();                  final Graphics graphics = this.getGraphics();
467                  int x = e.getX();                  final int x = e.getX();
468                  int y = e.getY();                  final int y = e.getY();
469    
470                  if ((state == JMapPane.Pan)                  if ((state == JMapPane.Pan)
471                                  || ((e.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {                                  || ((e.getModifiersEx() & InputEvent.BUTTON3_DOWN_MASK) != 0)) {
# Line 849  public class JMapPane extends JPanel imp Line 479  public class JMapPane extends JPanel imp
479    
480                          // move the image with the mouse                          // move the image with the mouse
481                          if ((lastX > 0) && (lastY > 0)) {                          if ((lastX > 0) && (lastY > 0)) {
482                                  int dx = lastX - startX;                                  final int dx = lastX - startX;
483                                  int dy = lastY - startY;                                  final int dy = lastY - startY;
484                                  // System.out.println("translate "+dx+","+dy);                                  // System.out.println("translate "+dx+","+dy);
485                                  final Graphics2D g2 = panningImage.createGraphics();                                  final Graphics2D g2 = panningImage.createGraphics();
486                                  g2.setBackground(new Color(240, 240, 240)); // TODO richtige                                  g2.setBackground(new Color(240, 240, 240)); // TODO richtige
487                                                                                                                          // farbe? am besten                                  // farbe? am besten
488                                                                                                                          // vom L&F die                                  // vom L&F die
489                                                                                                                          // hintergrundfarbe                                  // hintergrundfarbe
490                                                                                                                          // auslesen...                                  // auslesen...
491                                    
492                                  g2.clearRect(0, 0, this.getWidth(), this.getHeight());                                  g2.clearRect(0, 0, this.getWidth(), this.getHeight());
493                                  g2.drawImage(baseImage, dx, dy, this);                                  g2.drawImage(baseImage, dx, dy, this);
494                                  graphics.drawImage(panningImage, 0, 0, this);                                  graphics.drawImage(panningImage, 0, 0, this);
# Line 880  public class JMapPane extends JPanel imp Line 510  public class JMapPane extends JPanel imp
510                          lastX = x;                          lastX = x;
511                          lastY = y;                          lastY = y;
512                          drawRectangle(graphics);                          drawRectangle(graphics);
                 } else if (state == JMapPane.Select && selectionLayer != null) {  
   
                         // construct a new bbox filter  
                         Rectangle bounds = this.getBounds();  
   
                         double mapWidth = mapArea.getWidth();  
                         double mapHeight = mapArea.getHeight();  
   
                         double x1 = ((this.startX * mapWidth) / (double) bounds.width)  
                                         + mapArea.getMinX();  
                         double y1 = (((bounds.getHeight() - this.startY) * mapHeight) / (double) bounds.height)  
                                         + mapArea.getMinY();  
                         double x2 = ((x * mapWidth) / (double) bounds.width)  
                                         + mapArea.getMinX();  
                         double y2 = (((bounds.getHeight() - y) * mapHeight) / (double) bounds.height)  
                                         + mapArea.getMinY();  
                         double left = Math.min(x1, x2);  
                         double right = Math.max(x1, x2);  
                         double bottom = Math.min(y1, y2);  
                         double top = Math.max(y1, y2);  
   
                         String name = selectionLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getName();  
   
                         if (name == "") {  
                                 name = "the_geom";  
                         }  
                         Filter bb = ff.bbox(ff.property(name), left, bottom, right, top,  
                                         getContext().getCoordinateReferenceSystem().toString());  
                         if (selectionManager != null) {  
                                 selectionManager.selectionChanged(this, bb);  
                         }  
   
                         graphics.setXORMode(Color.green);  
   
                         /*  
                          * if ((lastX > 0) && (lastY > 0)) { drawRectangle(graphics); }  
                          */  
   
                         // draw new box  
                         lastX = x;  
                         lastY = y;  
                         drawRectangle(graphics);  
513                  }                  }
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    
562          }          }
563    
# Line 931  public class JMapPane extends JPanel imp Line 565  public class JMapPane extends JPanel imp
565          // private void processDrag(int x1, int y1, int x2, int y2) {          // private void processDrag(int x1, int y1, int x2, int y2) {
566          // sk.ce          // sk.ce
567          protected void processDrag(final int x1, final int y1, final int x2,          protected void processDrag(final int x1, final int y1, final int x2,
568                          final int y2, MouseEvent e) {                          final int y2, final MouseEvent e) {
569    
570    
571                  /****                  /****
572                   * If no layer is availabe we dont want a NullPointerException                   * If no layers exist, we ignore the drag.
573                   */                   */
574                  if (mapArea == null)                  if (context.getLayerCount() <= 0) {
575                          return;                          return;
576                    }
577                    
578                  // System.out.println("processing drag from " + x1 + "," + y1 + " -> "                  // System.out.println("processing drag from " + x1 + "," + y1 + " -> "
579                  // + x2 + "," + y2);                  // + x2 + "," + y2);
580                  if ((x1 == x2) && (y1 == y2)) {                  if ((x1 == x2) && (y1 == y2)) {
# Line 950  public class JMapPane extends JPanel imp Line 586  public class JMapPane extends JPanel imp
586                          return;                          return;
587                  }                  }
588    
589                  Rectangle bounds = this.getBounds();                  final Rectangle bounds = this.getBounds();
590    
591                  double mapWidth = mapArea.getWidth();                  final double mapWidth = mapArea.getWidth();
592                  double mapHeight = mapArea.getHeight();                  final double mapHeight = mapArea.getHeight();
593    
594                  double startX = ((x1 * mapWidth) / (double) bounds.width)                  final double startX = ((x1 * mapWidth) / (double) bounds.width)
595                                  + mapArea.getMinX();                                  + mapArea.getMinX();
596                  double startY = (((bounds.getHeight() - y1) * mapHeight) / (double) bounds.height)                  final double startY = (((bounds.getHeight() - y1) * mapHeight) / (double) bounds.height)
597                                  + mapArea.getMinY();                                  + mapArea.getMinY();
598                  double endX = ((x2 * mapWidth) / (double) bounds.width)                  final double endX = ((x2 * mapWidth) / (double) bounds.width)
599                                  + mapArea.getMinX();                                  + mapArea.getMinX();
600                  double endY = (((bounds.getHeight() - y2) * mapHeight) / (double) bounds.height)                  final double endY = (((bounds.getHeight() - y2) * mapHeight) / (double) bounds.height)
601                                  + mapArea.getMinY();                                  + mapArea.getMinY();
602    
603                  if ((state == JMapPane.Pan) || (e.getButton() == MouseEvent.BUTTON3)) {                  if ((state == JMapPane.Pan) || (e.getButton() == MouseEvent.BUTTON3)) {
604                          // move the image with the mouse                          // move the image with the mouse
605                          // calculate X offsets from start point to the end Point                          // calculate X offsets from start point to the end Point
606                          double deltaX1 = endX - startX;                          final double deltaX1 = endX - startX;
607    
608                          // System.out.println("deltaX " + deltaX1);                          // System.out.println("deltaX " + deltaX1);
609                          // new edges                          // new edges
610                          double left = mapArea.getMinX() - deltaX1;                          final double left = mapArea.getMinX() - deltaX1;
611                          double right = mapArea.getMaxX() - deltaX1;                          final double right = mapArea.getMaxX() - deltaX1;
612    
613                          // now for Y                          // now for Y
614                          double deltaY1 = endY - startY;                          final double deltaY1 = endY - startY;
615    
616                          // System.out.println("deltaY " + deltaY1);                          // System.out.println("deltaY " + deltaY1);
617                          double bottom = mapArea.getMinY() - deltaY1;                          final double bottom = mapArea.getMinY() - deltaY1;
618                          double top = mapArea.getMaxY() - deltaY1;                          final double top = mapArea.getMaxY() - deltaY1;
619                          Coordinate ll = new Coordinate(left, bottom);                          final Coordinate ll = new Coordinate(left, bottom);
620                          Coordinate ur = new Coordinate(right, top);                          final Coordinate ur = new Coordinate(right, top);
621                          // xulu.sc                          // xulu.sc
622                          // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));                          // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));
623                          setMapArea(fixAspectRatio(this.getBounds(), new Envelope(ll, ur)));                          
624    
625                            setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));
626                          // xulu.ec                          // xulu.ec
627                  } else if (state == JMapPane.ZoomIn) {                  } else if (state == JMapPane.ZoomIn) {
628    
# Line 996  public class JMapPane extends JPanel imp Line 634  public class JMapPane extends JPanel imp
634    
635                          drawRectangle(this.getGraphics());                          drawRectangle(this.getGraphics());
636                          // make the dragged rectangle (in map coords) the new BBOX                          // make the dragged rectangle (in map coords) the new BBOX
637                          double left = Math.min(startX, endX);                          final double left = Math.min(startX, endX);
638                          double right = Math.max(startX, endX);                          final double right = Math.max(startX, endX);
639                          double bottom = Math.min(startY, endY);                          final double bottom = Math.min(startY, endY);
640                          double top = Math.max(startY, endY);                          final double top = Math.max(startY, endY);
641                          Coordinate ll = new Coordinate(left, bottom);                          final Coordinate ll = new Coordinate(left, bottom);
642                          Coordinate ur = new Coordinate(right, top);                          final Coordinate ur = new Coordinate(right, top);
643                          // xulu.sc                          // xulu.sc
644    
645                          // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));                          // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));
646                          setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));                          setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));
647    
648                          // sk.sc                          // sk.sc
649  //                      {                          // {
650  //                      // SK tries to paint a preview of the zoom ;-9 aha.... well                          // // SK tries to paint a preview of the zoom ;-9 aha.... well
651  //                      Graphics2D graphics = (Graphics2D) JMapPane.this.getGraphics();                          // Graphics2D graphics = (Graphics2D) JMapPane.this.getGraphics();
652  //                      graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,                          // graphics.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
653  //                                      RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);                          // RenderingHints.VALUE_INTERPOLATION_NEAREST_NEIGHBOR);
654  //                      graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,                          // graphics.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
655  //                                      RenderingHints.VALUE_ANTIALIAS_OFF);                          // RenderingHints.VALUE_ANTIALIAS_OFF);
656  //                      graphics.setRenderingHint(RenderingHints.KEY_RENDERING,                          // graphics.setRenderingHint(RenderingHints.KEY_RENDERING,
657  //                                      RenderingHints.VALUE_RENDER_SPEED);                          // RenderingHints.VALUE_RENDER_SPEED);
658  //                      graphics.drawImage(baseImage, 0, 0, JMapPane.this.getWidth(),                          // graphics.drawImage(baseImage, 0, 0, JMapPane.this.getWidth(),
659  //                                      JMapPane.this.getHeight(), x1, y1, x2, y2, null);                          // JMapPane.this.getHeight(), x1, y1, x2, y2, null);
660  //                      }                          // }
661                          // xulu.ec                          // xulu.ec
662                  } else if (state == JMapPane.ZoomOut) {                  } else if (state == JMapPane.ZoomOut) {
663                          drawRectangle(this.getGraphics());                          drawRectangle(this.getGraphics());
664    
665                          // make the dragged rectangle in screen coords the new map size?                          // make the dragged rectangle in screen coords the new map size?
666                          double left = Math.min(startX, endX);                          final double left = Math.min(startX, endX);
667                          double right = Math.max(startX, endX);                          final double right = Math.max(startX, endX);
668                          double bottom = Math.min(startY, endY);                          final double bottom = Math.min(startY, endY);
669                          double top = Math.max(startY, endY);                          final double top = Math.max(startY, endY);
670                          double nWidth = (mapWidth * mapWidth) / (right - left);                          final double nWidth = (mapWidth * mapWidth) / (right - left);
671                          double nHeight = (mapHeight * mapHeight) / (top - bottom);                          final double nHeight = (mapHeight * mapHeight) / (top - bottom);
672                          double deltaX1 = left - mapArea.getMinX();                          final double deltaX1 = left - mapArea.getMinX();
673                          double nDeltaX1 = (deltaX1 * nWidth) / mapWidth;                          final double nDeltaX1 = (deltaX1 * nWidth) / mapWidth;
674                          double deltaY1 = bottom - mapArea.getMinY();                          final double deltaY1 = bottom - mapArea.getMinY();
675                          double nDeltaY1 = (deltaY1 * nHeight) / mapHeight;                          final double nDeltaY1 = (deltaY1 * nHeight) / mapHeight;
676                          Coordinate ll = new Coordinate(mapArea.getMinX() - nDeltaX1,                          final Coordinate ll = new Coordinate(mapArea.getMinX() - nDeltaX1,
677                                          mapArea.getMinY() - nDeltaY1);                                          mapArea.getMinY() - nDeltaY1);
678                          double deltaX2 = mapArea.getMaxX() - right;                          final double deltaX2 = mapArea.getMaxX() - right;
679                          double nDeltaX2 = (deltaX2 * nWidth) / mapWidth;                          final double nDeltaX2 = (deltaX2 * nWidth) / mapWidth;
680                          double deltaY2 = mapArea.getMaxY() - top;                          final double deltaY2 = mapArea.getMaxY() - top;
681                          double nDeltaY2 = (deltaY2 * nHeight) / mapHeight;                          final double nDeltaY2 = (deltaY2 * nHeight) / mapHeight;
682                          Coordinate ur = new Coordinate(mapArea.getMaxX() + nDeltaX2,                          final Coordinate ur = new Coordinate(mapArea.getMaxX() + nDeltaX2,
683                                          mapArea.getMaxY() + nDeltaY2);                                          mapArea.getMaxY() + nDeltaY2);
684                          // xulu.sc                          // xulu.sc
685                          // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));                          // mapArea = fixAspectRatio(this.getBounds(), new Envelope(ll, ur));
686                          setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));                          setMapArea(bestAllowedMapArea(new Envelope(ll, ur)));
687    
688                          // xulu.ec                          // xulu.ec
                 } else if (state == JMapPane.Select && selectionLayer != null) {  
                         double left = Math.min(startX, endX);  
                         double right = Math.max(startX, endX);  
                         double bottom = Math.min(startY, endY);  
                         double top = Math.max(startY, endY);  
   
                         String name = selectionLayer.getFeatureSource().getSchema()  
                                         .getDefaultGeometry().getLocalName();  
   
                         if (name == "") {  
                                 name = "the_geom";  
                         }  
                         Filter bb = ff.bbox(ff.property(name), left, bottom, right, top,  
                                         getContext().getCoordinateReferenceSystem().toString());  
                         // System.out.println(bb.toString());  
                         if (selectionManager != null) {  
                                 selectionManager.selectionChanged(this, bb);  
                         }  
                         /*  
                          * FeatureCollection fc; selection = null; try { fc =  
                          * selectionLayer.getFeatureSource().getFeatures(bb); selection =  
                          * fc; } catch (IOException e) { e.printStackTrace(); }  
                          */  
689                  }                  }
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    
716                  // xulu.so                  // xulu.so
717                  // setMapArea(mapArea);                  // setMapArea(mapArea);
# Line 1083  public class JMapPane extends JPanel imp Line 723  public class JMapPane extends JPanel imp
723                  return clickable;                  return clickable;
724          }          }
725    
726          private org.geotools.styling.Style setupStyle(int type, Color color) {          //
727                  StyleFactory sf = org.geotools.factory.CommonFactoryFinder          // private org.geotools.styling.Style setupStyle(final int type, final Color
728                                  .getStyleFactory(null);          // color) {
729                  StyleBuilder sb = new StyleBuilder();          // final StyleFactory sf = org.geotools.factory.CommonFactoryFinder
730            // .getStyleFactory(null);
731                  org.geotools.styling.Style s = sf.createStyle();          // final StyleBuilder sb = new StyleBuilder();
732                  s.setTitle("selection");          //
733            // org.geotools.styling.Style s = sf.createStyle();
734                  // TODO parameterise the color          // s.setTitle("selection");
735                  PolygonSymbolizer ps = sb.createPolygonSymbolizer(color);          //
736                  ps.setStroke(sb.createStroke(color));          // // TODO parameterise the color
737            // final PolygonSymbolizer ps = sb.createPolygonSymbolizer(color);
738                  LineSymbolizer ls = sb.createLineSymbolizer(color);          // ps.setStroke(sb.createStroke(color));
739                  Graphic h = sb.createGraphic();          //
740                  h.setMarks(new Mark[] { sb.createMark("square", color) });          // final LineSymbolizer ls = sb.createLineSymbolizer(color);
741            // final Graphic h = sb.createGraphic();
742                  PointSymbolizer pts = sb.createPointSymbolizer(h);          // h.setMarks(new Mark[] { sb.createMark("square", color) });
743            //
744                  // Rule r = sb.createRule(new Symbolizer[]{ps,ls,pts});          // final PointSymbolizer pts = sb.createPointSymbolizer(h);
745                  switch (type) {          //
746                  case POLYGON:          // // Rule r = sb.createRule(new Symbolizer[]{ps,ls,pts});
747                          s = sb.createStyle(ps);          // switch (type) {
748            // case POLYGON:
749                          break;          // s = sb.createStyle(ps);
750            //
751                  case POINT:          // break;
752                          s = sb.createStyle(pts);          //
753            // case POINT:
754                          break;          // s = sb.createStyle(pts);
755            //
756                  case LINE:          // break;
757                          s = sb.createStyle(ls);          //
758                  }          // case LINE:
759            // s = sb.createStyle(ls);
760                  return s;          // }
761          }          //
762            // return s;
763          public void highlightChanged(HighlightChangedEvent e) {          // }
                 org.opengis.filter.Filter f = e.getFilter();  
764    
765                  try {          public void propertyChange(final PropertyChangeEvent evt) {
766                          highlightFeature = highlightLayer.getFeatureSource().getFeatures(f);                  final String prop = evt.getPropertyName();
                 } catch (IOException e1) {  
                         // TODO Auto-generated catch block  
                         e1.printStackTrace();  
                 }  
   
                 repaint();  
         }  
   
         public void propertyChange(PropertyChangeEvent evt) {  
                 String prop = evt.getPropertyName();  
767    
768                  if (prop.equalsIgnoreCase("crs")) {                  if (prop.equalsIgnoreCase("crs")) {
769                          context.setAreaOfInterest(context.getAreaOfInterest(),                          context.setAreaOfInterest(context.getAreaOfInterest(),
# Line 1146  public class JMapPane extends JPanel imp Line 775  public class JMapPane extends JPanel imp
775                  return reset;                  return reset;
776          }          }
777    
778          public void setReset(boolean reset) {          public void setReset(final boolean reset) {
779                  this.reset = reset;                  this.reset = reset;
780          }          }
781    
782          public void layerAdded(MapLayerListEvent event) {          public void layerAdded(final MapLayerListEvent event) {
783                  changed = true;                  changed = true;
784    
785                  if (context.getLayers().length == 1) { // the first one                  if (context.getLayers().length == 1) { // the first one
# Line 1162  public class JMapPane extends JPanel imp Line 791  public class JMapPane extends JPanel imp
791                                  if (mapArea == null)                                  if (mapArea == null)
792                                          mapArea = context.getLayerBounds();                                          mapArea = context.getLayerBounds();
793                                  // xulu.ec                                  // xulu.ec
794                          } catch (IOException e) {                          } catch (final IOException e) {
795                                  // TODO Auto-generated catch block                                  // TODO Auto-generated catch block
796                                  e.printStackTrace();                                  e.printStackTrace();
797                          }                          }
# Line 1173  public class JMapPane extends JPanel imp Line 802  public class JMapPane extends JPanel imp
802                  repaint();                  repaint();
803          }          }
804    
805          public void layerRemoved(MapLayerListEvent event) {          public void layerRemoved(final MapLayerListEvent event) {
806                  changed = true;                  changed = true;
807                  repaint();                  repaint();
808          }          }
809    
810          public void layerChanged(MapLayerListEvent event) {          public void layerChanged(final MapLayerListEvent event) {
811                  changed = true;                  changed = true;
812                  // System.out.println("layer changed - repaint");                  // System.out.println("layer changed - repaint");
813                  repaint();                  repaint();
814          }          }
815    
816          public void layerMoved(MapLayerListEvent event) {          public void layerMoved(final MapLayerListEvent event) {
817                  changed = true;                  changed = true;
818                  repaint();                  repaint();
819          }          }
820    
821          protected void drawRectangle(Graphics graphics) {          protected void drawRectangle(final Graphics graphics) {
822                  // undraw last box/draw new box                  // undraw last box/draw new box
823                  int left = Math.min(startX, lastX);                  final int left = Math.min(startX, lastX);
824                  int right = Math.max(startX, lastX);                  final int right = Math.max(startX, lastX);
825                  int top = Math.max(startY, lastY);                  final int top = Math.max(startY, lastY);
826                  int bottom = Math.min(startY, lastY);                  final int bottom = Math.min(startY, lastY);
827                  int width = right - left;                  final int width = right - left;
828                  int height = top - bottom;                  final int height = top - bottom;
829                  // System.out.println("drawing rect("+left+","+bottom+","+ width+","+                  // System.out.println("drawing rect("+left+","+bottom+","+ width+","+
830                  // height+")");                  // height+")");
831                  graphics.drawRect(left, bottom, width, height);                  graphics.drawRect(left, bottom, width, height);
# Line 1208  public class JMapPane extends JPanel imp Line 837  public class JMapPane extends JPanel imp
837           *           *
838           * @param clickable           * @param clickable
839           */           */
840          public void setClickable(boolean clickable) {          public void setClickable(final boolean clickable) {
841                  this.clickable = clickable;                  this.clickable = clickable;
842          }          }
843    
844          public void mouseMoved(MouseEvent e) {          public void mouseMoved(final MouseEvent e) {
         }  
   
         public FeatureCollection getSelection() {  
                 return selection;  
         }  
   
         public void setSelection(FeatureCollection selection) {  
                 this.selection = selection;  
                 repaint();  
         }  
   
         /*  
          * (non-Javadoc)  
          *  
          * @see  
          * org.geotools.gui.swing.event.SelectionChangeListener#selectionChanged  
          * (org.geotools.gui.swing.event.SelectionChangedEvent)  
          */  
         public void selectionChanged(SelectionChangedEvent e) {  
   
                 try {  
                         selection = selectionLayer.getFeatureSource().getFeatures(  
                                         e.getFilter());  
                         repaint();  
                 } catch (IOException e1) {  
                         e1.printStackTrace();  
                 }  
         }  
   
         public SelectionManager getSelectionManager() {  
                 return selectionManager;  
         }  
   
         public void setSelectionManager(SelectionManager selectionManager) {  
                 this.selectionManager = selectionManager;  
                 this.selectionManager.addSelectionChangeListener(this);  
   
845          }          }
846    
847          // xulu.sn          // xulu.sn
# Line 1270  public class JMapPane extends JPanel imp Line 862  public class JMapPane extends JPanel imp
862                  if (env == null)                  if (env == null)
863                          return env;                          return env;
864    
865                    Envelope newArea = null;
866    
867                  /**                  /**
868                   * Correct the aspect Ratio before we check the rest. Otherwise we might                   * Correct the aspect Ratio before we check the rest. Otherwise we might
869                   * easily fail.                   * easily fail. We allow to grow here, because we don't check against the maxExtend
870                   */                   */
871                  env = fixAspectRatio(this.getBounds(), env);                  env = JTSUtil.fixAspectRatio(this.getBounds(), env, true);
872    
873                  double scale = env.getWidth() / getWidth();                  final double scale = env.getWidth() / getWidth();
874                  double centerX = env.getMinX() + env.getWidth() / 2.;                  final double centerX = env.getMinX() + env.getWidth() / 2.;
875                  double centerY = env.getMinY() + env.getHeight() / 2.;                  final double centerY = env.getMinY() + env.getHeight() / 2.;
876                  double newWidth2;                  double newWidth2 = 0;
877                  double newHeight2;                  double newHeight2 = 0;
878                  if (scale < getMaxZoomScale()) {                  if (scale < getMaxZoomScale()) {
879                          // ****************************************************************************                          // ****************************************************************************
880                          // Wir zoomen weiter rein als erlaubt => Anpassen des envelope                          // Wir zoomen weiter rein als erlaubt => Anpassen des envelope
# Line 1297  public class JMapPane extends JPanel imp Line 891  public class JMapPane extends JPanel imp
891                          // ****************************************************************************                          // ****************************************************************************
892                          // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen                          // Die mapArea / der Envelope ist ist gueltig! Keine Aenderungen
893                          // ****************************************************************************                          // ****************************************************************************
894                          return env;                          newArea = env;
895                    }
896    
897                    if (newArea == null) {
898    
899                            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                  Coordinate ll = new Coordinate(centerX - newWidth2, centerY                  Envelope maxAllowedExtend = getMaxExtend();
908                                  - newHeight2);                  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                  Coordinate ur = new Coordinate(centerX + newWidth2, centerY                          /*
910                                  + newHeight2);                           * If a maxExtend is set, we have to honour that...
911                             */
912    
913                            // Exceeds top? Move down and maybe cut
914                            if (newArea.getMaxY() > maxAllowedExtend.getMaxY()) {
915                                    double divY = newArea.getMaxY() - maxAllowedExtend.getMaxY();
916    //                              LOGGER.debug("Moving area down by " + divY);
917    
918                                    newArea = new Envelope(new Coordinate(newArea.getMinX(),
919                                                    newArea.getMinY() - divY), new Coordinate(newArea
920                                                    .getMaxX(), newArea.getMaxY() - divY));
921    
922                                    if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
923    //                                      LOGGER.debug("Now it exeeds the bottom border.. cut!");
924                                            // And cut the bottom if it moved out of the area
925                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
926                                                            maxAllowedExtend.getMinY()), new Coordinate(newArea
927                                                            .getMaxX(), newArea.getMaxY()));
928    
929    //                                      LOGGER.debug("and fix aspect ratio");
930    
931                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea, false);
932                                    }
933                            }
934    
935                            // Exceeds bottom? Move up and maybe cut
936                            if (newArea.getMinY() < maxAllowedExtend.getMinY()) {
937                                    double divY = newArea.getMinY() - maxAllowedExtend.getMinY();
938    //                              LOGGER.debug("Moving area up by " + divY);
939    
940                                    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    //                                      LOGGER.debug("Now it exeeds the top border.. cut!");
946                                            // And cut the bottom if it moved out of the area
947                                            newArea = new Envelope(new Coordinate(newArea.getMinX(),
948                                                            newArea.getMinY()), new Coordinate(newArea
949                                                            .getMaxX(), maxAllowedExtend.getMaxY()));
950    
951                  return new Envelope(ll, ur);  //                                      LOGGER.debug("and fix aspect ratio");
952    
953                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea, false);
954                                    }
955                            }
956    
957                            // Exceeds to the right? move and maybe cut
958                            if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
959    
960                                    // Move left..
961                                    double divX = newArea.getMaxX() - maxAllowedExtend.getMaxX();
962    //                              LOGGER.debug("Moving area left by " + divX);
963    
964                                    newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
965                                                    newArea.getMinY()), new Coordinate(newArea.getMaxX()
966                                                    - divX, newArea.getMaxY()));
967    
968                                    if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
969    //                                      LOGGER.debug("Now it exeeds the left border.. cut!");
970                                            // And cut the left if it moved out of the area
971                                            newArea = new Envelope(new Coordinate(maxAllowedExtend.getMinX(),
972                                                            newArea.getMinY()), new Coordinate(newArea
973                                                            .getMaxX(), newArea.getMaxY()));
974    
975    //                                      LOGGER.debug("and fix aspect ratio");
976    
977                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea, false);
978                                    }
979                            }
980    
981                            // Exceeds to the left? move and maybe cut
982                            if (newArea.getMinX() < maxAllowedExtend.getMinX()) {
983    
984                                    // Move right..
985                                    double divX = newArea.getMinX() - maxAllowedExtend.getMinX();
986    //                              LOGGER.debug("Moving area right by " + divX);
987    
988                                    newArea = new Envelope(new Coordinate(newArea.getMinX() - divX,
989                                                    newArea.getMinY()), new Coordinate(newArea.getMaxX()
990                                                    - divX, newArea.getMaxY()));
991    
992                                    if (newArea.getMaxX() > maxAllowedExtend.getMaxX()) {
993    //                                      LOGGER.debug("Now it exeeds the right border.. cut!");
994                                            // 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    
999    //                                      LOGGER.debug("and fix aspect ratio");
1000    
1001                                            newArea = JTSUtil.fixAspectRatio(this.getBounds(), newArea, false);
1002                                    }
1003                            }
1004    
1005                    }
1006    
1007                    return newArea;
1008          }          }
1009    
1010          /**          /**
# Line 1337  public class JMapPane extends JPanel imp Line 1036  public class JMapPane extends JPanel imp
1036           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
1037           *         Kr&uuml;ger</a>           *         Kr&uuml;ger</a>
1038           */           */
1039          public void setMaxZoomScale(Double maxZoomScale) {          public void setMaxZoomScale(final Double maxZoomScale) {
                 // System.out.println("setting max scale to "+maxZoomScale);  
1040                  this.maxZoomScale = maxZoomScale;                  this.maxZoomScale = maxZoomScale;
1041          }          }
1042    
# Line 1349  public class JMapPane extends JPanel imp Line 1047  public class JMapPane extends JPanel imp
1047           * @author <a href="mailto:[email protected]">Stefan Alfons           * @author <a href="mailto:[email protected]">Stefan Alfons
1048           *         Kr&uuml;ger</a>           *         Kr&uuml;ger</a>
1049           */           */
1050          public void setMinZoomScale(Double minZoomScale) {          public void setMinZoomScale(final Double minZoomScale) {
1051                  this.minZoomScale = minZoomScale;                  this.minZoomScale = minZoomScale;
1052          }          }
1053          // xulu.en  
1054            /**
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             * 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             *
1072             * @param maxExtend
1073             *            <code>null</code> to not have this restriction.
1074             */
1075    
1076            public Envelope getMaxExtend() {
1077                    if (maxExtend == null) {
1078                            try {
1079                                    return JTSUtil.fixAspectRatio(
1080                                        this.getBounds(),
1081                            // Kartenbereich um 10% vergroessern
1082                                        JTSUtil.expandEnvelope(context.getLayerBounds(), 0.1),
1083                                        true
1084                                    );
1085                            } catch (IOException e) {
1086                                    LOGGER.warn(
1087                                                                    "maxExtend == null; failed to getLayerBounds of context",
1088                                                                    e);
1089                            }
1090                    }
1091                    return maxExtend;
1092            }
1093    
1094  }  }

Legend:
Removed from v.207  
changed lines
  Added in v.497

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26