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