37 |
import javax.swing.JPanel; |
import javax.swing.JPanel; |
38 |
import javax.swing.JSplitPane; |
import javax.swing.JSplitPane; |
39 |
|
|
40 |
|
import net.miginfocom.swing.MigLayout; |
41 |
|
|
42 |
import org.apache.log4j.Logger; |
import org.apache.log4j.Logger; |
|
import org.geotools.renderer.lite.StreamingRenderer; |
|
|
import org.geotools.renderer.shape.TransitionShapefileRenderer; |
|
43 |
|
|
44 |
import schmitzm.geotools.gui.GeoMapPane; |
import schmitzm.geotools.gui.GeoMapPane; |
|
import schmitzm.geotools.gui.JMapPane; |
|
45 |
import schmitzm.geotools.gui.MapContextControlPane; |
import schmitzm.geotools.gui.MapContextControlPane; |
46 |
import schmitzm.geotools.gui.MapPaneStatusBar; |
import schmitzm.geotools.gui.MapPaneStatusBar; |
47 |
|
import schmitzm.geotools.gui.SelectableXMapPane; |
48 |
import schmitzm.geotools.styling.ColorMapManager; |
import schmitzm.geotools.styling.ColorMapManager; |
49 |
|
|
50 |
/** |
/** |
71 |
/** |
/** |
72 |
* Creates a new {@link MapView}. A {@link MapView} is a combination of a |
* Creates a new {@link MapView}. A {@link MapView} is a combination of a |
73 |
* {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and |
* {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and |
74 |
* some buttons floating over the {@link JMapPane} |
* some buttons floating over the {@link SelectableXMapPane} |
75 |
*/ |
*/ |
76 |
public MapView(Component parentGui, MapPaneToolBar toolBar) { |
public MapView(Component parentGui, MapPaneToolBar toolBar) { |
77 |
super(new BorderLayout()); |
super(new BorderLayout()); |
78 |
// Call initialize() by yourself afterwards. |
// Call initialize() by yourself afterwards. |
79 |
// Needed because variables for the overwritten methods |
// Needed because variables for the overwritten methods |
80 |
// are not yet set. |
// are not yet set. |
|
getGeoMapPane().getMapPane().setWaitCursorComponent(parentGui); |
|
|
if (toolBar == null) |
|
|
toolBar = new MapPaneToolBar(getMapPane()); |
|
81 |
jToolBar = toolBar; |
jToolBar = toolBar; |
82 |
} |
} |
83 |
|
|
84 |
/** |
/** |
85 |
* Creates a new {@link MapView}. A {@link MapView} is a combination of a |
* Creates a new {@link MapView}. A {@link MapView} is a combination of a |
86 |
* {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and |
* {@link GeoMapPane}, a {@link MapContextManagerInterface} on the left, and |
87 |
* some buttons floating over the {@link JMapPane} |
* some buttons floating over the {@link SelectableXMapPane} |
88 |
*/ |
*/ |
89 |
public MapView(Component parentGui) { |
public MapView(Component parentGui) { |
90 |
this(parentGui, null); |
this(parentGui, null); |
124 |
* To the right side we now add a JPanel that consists of a toolbar and |
* To the right side we now add a JPanel that consists of a toolbar and |
125 |
* a gmp |
* a gmp |
126 |
*/ |
*/ |
127 |
JPanel newRight = new JPanel(new BorderLayout()); |
JPanel newRight = new JPanel(new MigLayout("center, wrap 1","[grow]","[][grow]")); |
128 |
newRight.add(getToolBar(), BorderLayout.NORTH); |
newRight.add(getToolBar()); |
129 |
newRight.add(getGeoMapPane(), BorderLayout.CENTER); |
newRight.add(getGeoMapPane(),"growx, growy"); |
130 |
getSplitPane().add(newRight); |
getSplitPane().add(newRight); |
131 |
|
|
132 |
this.add(getSplitPane(), BorderLayout.CENTER); |
this.add(getSplitPane(), BorderLayout.CENTER); |
133 |
|
|
134 |
} |
} |
135 |
|
|
136 |
/** |
/** |
137 |
* Returns the tool bar which controls the active mouse actions on the map. |
* Returns the tool bar which controls the active mouse actions on the map. |
138 |
* |
* |
139 |
* @return |
* @return never <code>null</code>, will rather create a default |
140 |
*/ |
*/ |
141 |
public MapPaneToolBar getToolBar() { |
public MapPaneToolBar getToolBar() { |
142 |
|
if (jToolBar == null) { |
143 |
|
jToolBar = new MapPaneToolBar(getMapPane()); |
144 |
|
} |
145 |
return jToolBar; |
return jToolBar; |
146 |
} |
} |
147 |
|
|
226 |
/** |
/** |
227 |
* Liefert den Karten-Bereich der Komponente. |
* Liefert den Karten-Bereich der Komponente. |
228 |
*/ |
*/ |
229 |
public final JMapPane getMapPane() { |
public final SelectableXMapPane getMapPane() { |
230 |
return getGeoMapPane().getMapPane(); |
return getGeoMapPane().getMapPane(); |
231 |
} |
} |
232 |
|
|