Package chunmap.data.provider.postgis

Examples of chunmap.data.provider.postgis.PostgisDataSource


    }

    public static VectorLayer OpenPostGIS(String tableName
        , PostgisConnection ConnectionString, String geom, String id)
    {
      PostgisDataSource pDR = new PostgisDataSource(tableName , geom, id,ConnectionString);
        GeoDataAdapter pDA = new GeoDataAdapter(pDR);
        VectorLayer layer = new VectorLayer(pDA.createFeatureList());
        pDR.close();
        return layer;
    }
View Full Code Here

TOP

Related Classes of chunmap.data.provider.postgis.PostgisDataSource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.