1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URL;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
import org.geotools.data.FeatureSource;
import org.geotools.data.Query;
import org.geotools.data.shapefile.ShapefileDataStore;
import org.geotools.gui.swing.JMapPane;
import org.geotools.map.DefaultMapContext;
import org.geotools.map.DefaultMapLayer;
import org.geotools.map.MapContext;
import org.geotools.map.MapLayer;
import org.geotools.renderer.lite.StreamingRenderer;
import org.geotools.styling.PolygonSymbolizer;
import org.geotools.styling.Style;
import org.geotools.styling.StyleBuilder;
public class Quickstart {
private JMapPane mappane = new JMapPane();
public Quickstart() {
JFrame frm = new JFrame();
frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frm.setSize(800, 600);
frm.setTitle("Ma Première carte avec GeoTools");
JPanel pfond = new JPanel(new BorderLayout());
frm.setContentPane(pfond);
frm.setJMenuBar(buildMenu());
frm.getContentPane().add(BorderLayout.CENTER, buildMap());
frm.getContentPane().add(BorderLayout.NORTH, buildTool());
frm.setVisible(true);
}
private JMenuBar buildMenu() {
JMenuBar menu = new JMenuBar();
JMenu mfichier = new JMenu("Fichier");
JMenuItem iquitter = new JMenuItem("Quitter");
iquitter.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
});
mfichier.add(iquitter);
menu.add(mfichier);
return menu;
}
private JPanel buildMap() {
mappane.setBackground(new Color(157, 201, 255));
try {
MapContext mapcontext = new DefaultMapContext();
mapcontext.setTitle("Projet");
mappane.setContext(mapcontext);
MapLayer maplayer;
URL shapeURL = Quickstart.class.getResource("./france.shp");
ShapefileDataStore store = new ShapefileDataStore(shapeURL);
String name = store.getTypeNames()[0];
FeatureSource source = store.getFeatureSource(name);
StyleBuilder sb = new StyleBuilder();
PolygonSymbolizer ps = sb.createPolygonSymbolizer(new Color(253, 241, 187), new Color(163, 151, 97), 1);
Style solstyle = sb.createStyle();
solstyle.addFeatureTypeStyle(sb.createFeatureTypeStyle(ps));
maplayer = new DefaultMapLayer(source, solstyle);
maplayer.setTitle("france.shp");
maplayer.setVisible(true);
maplayer.setQuery(Query.ALL);
mapcontext.addLayer(maplayer);
StreamingRenderer render = new StreamingRenderer();
mappane.setRenderer(render);
mappane.setMapArea(mapcontext.getLayerBounds());
} catch (Exception e) {
e.printStackTrace();
}
return mappane;
}
private JPanel buildTool() {
JPanel outil = new JPanel(new FlowLayout(FlowLayout.LEFT));
JButton plus = new JButton("+");
plus.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
mappane.setState(JMapPane.ZoomIn);
}
});
outil.add(plus);
JButton moins = new JButton("-");
moins.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
mappane.setState(JMapPane.ZoomOut);
}
});
outil.add(moins);
JButton pan = new JButton("Pan");
pan.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
mappane.setState(JMapPane.Pan);
}
});
outil.add(pan);
return outil;
}
public static void main(String[] args){
new Quickstart();
}
} |
Partager