编辑:有关信息:使用StyleLab示例创建样式,它将显示您想要的内容。
我正在尝试使用GeoTools显示POSTGIS数据 我做了以下示例: http://docs.geotools.org/stable/userguide/examples/: 使用QueryLab,我可以显示POSTGIS数据的选项卡 使用QuickStart,我可以显示shapefile(.shp)的地图
但是我没有成功混合这些源代码来显示我的postgis数据地图
关于错误消息,它可能来自缺少样式定义。然而,它完美适用于shapefile,所以我不明白。此外,我找不到如何创建合适的样式来解决这个问题。
如何将POSTGIS Geometries显示到地图中? 有谁知道如何解决这个问题或有任何想法?
这里是我的源代码和消息错误:
package org.geotools.tuto;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import javax.swing.JFrame;
import javax.swing.WindowConstants;
import org.geotools.data.DataStore;
import org.geotools.data.DataStoreFinder;
import org.geotools.data.FeatureSource;
import org.geotools.data.Query;
import org.geotools.map.*;
import org.geotools.swing.JMapPane;
public class test {
public test() throws IOException{
Map params = new HashMap();
params.put("dbtype", "postgis"); //must be postgis
//the name or ip address of the machine running PostGIS
params.put("host", "localhost");
//the port that PostGIS is running on (generally 5432)
params.put("port", new Integer(5432));
//the name of the database to connect to.
params.put("database", "***");
params.put("user", "***"); //the user to connect with
params.put("passwd", "***"); //the password of the user.
FeatureSource fsBC = null;
DataStore pgDatastore;
try {
pgDatastore = DataStoreFinder.getDataStore(params);
fsBC = pgDatastore.getFeatureSource("pumas_sections");
System.out.println("bc count: " + fsBC.getCount(Query.ALL));
} catch (IOException e) {
e.printStackTrace();
}
MapContext map = new DefaultMapContext();
map.setTitle("Quickstart");
map.addLayer(fsBC, null);
//...
}
public static void main(String[] args) throws Exception {
test t = new test();
}
}
错误:
Exception in thread "main" java.lang.UnsupportedOperationException: No
style method for com.vividsolutions.jts.geom.Geometry
at org.geotools.styling.SLD.createSimpleStyle(SLD.java:1967)
at org.geotools.styling.SLD.createSimpleStyle(SLD.java:1923)
at org.geotools.map.DefaultMapContext.checkStyle(DefaultMapContext.java:389)
at org.geotools.map.DefaultMapContext.addLayer(DefaultMapContext.java:222)
at org.geotools.tuto.test.<init>(test.java:45)
at org.geotools.tuto.test.main(test.java:52)
答案 0 :(得分:1)
我确实尝试过您的代码,但它确实有效。 我使用了geotools 10,在获得fsBC后,我使用了MapContent。
Style style = SLD.createSimpleStyle(fsBC.getSchema());
Layer layer = new FeatureLayer(fsBC, style);
MapContent map =new MapContent();
map.addLayer(layer);
希望这有用。