bonjour

j'ai un probleme qui m'intrigue .voila j'ai executer ce bout de programme qui sert normalement à afficher une carte à l'aide de geotools (à partir d'un fichier shp ) or ce n'estpas le cas il m'affichetout ( la fentre, les boutton....) sauf la carte qui n'apparait pas . je ne sais plus ou se situe le probleme


Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package geo;
 
 
 
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.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.LineSymbolizer;
import org.geotools.styling.PolygonSymbolizer;
import org.geotools.styling.Style;
import org.geotools.styling.StyleBuilder;
import org.geotools.swing.JMapPane;
 
 
 
 
 
 
public class Chap1Contact {
 
    private JMapPane mappane = new JMapPane();
 
    public Chap1Contact() {
        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() {
 
            @Override
            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.setMapContext(mapcontext);
 
            MapLayer maplayer;
 
            URL shapeURL = Chap1Contact.class.getResource("world_borders.shx");
 
            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("world_borders.shx");
            maplayer.setVisible(true);
            maplayer.setQuery(Query.ALL);
            mapcontext.addLayer(maplayer);
 
 
            shapeURL = Chap1Contact.class.getResource("D:\\reseau_route.shp");
 
            store = new ShapefileDataStore(shapeURL);
            name = store.getTypeNames()[0];
            source = store.getFeatureSource(name);
 
            sb = new StyleBuilder();
 
            LineSymbolizer ls2 = sb.createLineSymbolizer(Color.RED, 1);
            Style roadsStyle = sb.createStyle();
            roadsStyle.addFeatureTypeStyle(sb.createFeatureTypeStyle(ls2));
 
            maplayer = new DefaultMapLayer(source, roadsStyle);
            maplayer.setTitle("reseau_route.shp");
            maplayer.setVisible(true);
            maplayer.setQuery(Query.ALL);
            mapcontext.addLayer(maplayer);
 
            StreamingRenderer render = new StreamingRenderer();
 
            mappane.setRenderer(render);
            mappane.setDisplayArea(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 Chap1Contact();
     }
 
}




EXEPTION rencontré

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
run:
java.lang.NullPointerException
	at org.geotools.map.MapContent.listenToMapLayers(MapContent.java:274)
	at org.geotools.map.MapContent.addMapLayerListListener(MapContent.java:224)
	at org.geotools.map.MapContext.addMapLayerListListener(MapContext.java:513)
	at org.geotools.swing.JMapPane.doSetMapContext(JMapPane.java:479)
	at org.geotools.swing.JMapPane.setMapContext(JMapPane.java:461)
	at geo.Chap1Contact.buildMap(Chap1Contact.java:88)
	at geo.Chap1Contact.<init>(Chap1Contact.java:55)
	at geo.Chap1Contact.main(Chap1Contact.java:172)