2

编辑:有关信息:使用 StyleLab 示例创建样式,它将显示您想要的内容。

我正在尝试使用 GeoTools 显示 POSTGIS 数据 我做了以下示例: http://docs.geotools.org/stable/userguide/examples/:使用 QueryLab 我可以显示 POSTGIS 数据的选项卡 使用 QuickStart 我可以显示shapefile (.shp) 的映射

但是我没有成功将这些源代码与我的 postgis 数据混合显示地图

关于错误消息,它可能来自缺少样式定义。尽管如此,它非常适合shapefile,所以我不明白。此外,我没有找到如何创建适当的样式来解决这个问题。

如何将 POSTGIS 几何图形显示到地图中?有谁知道如何解决这个问题或有任何想法?

这是我的源代码和消息错误:

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)
4

1 回答 1

1

我确实尝试了您的代码,并且它有效。我用的是geotools 10,得到fsBC后,我用的是MapContent。

Style style = SLD.createSimpleStyle(fsBC.getSchema());
Layer layer = new FeatureLayer(fsBC, style);
MapContent map =new MapContent();
map.addLayer(layer);

希望这有用。

于 2014-04-03T03:57:59.127 回答