geoserver+postgis开发环境搭建,再加cesuim

geoserver

1.下载jre 8.0 http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html

注意9.0不支持,不需要Jdk

2.下载geoserver  http://docs.geoserver.org/latest/en/user/installation/win_installer.html

选中jre路径,默认安装,默认用户名密码为admin,geoserver,修改端口为8084免得冲突

打开http://localhost:8084/geoserver,登录

3.geoserver允许跨域请求。

这个坑连踩两次,记下来一点。

3.1、下载跨域jar包jetty-servlets.jar(下载geoserver使用的对应jetty版本,到安装目录中搜索jetty查看已安装版本号)并将jar包放到\webapps\geoserver\WEB-INF\lib文件夹下。

3.2、设置跨域配置。打开\webapps\geoserver\web.xml文件,找到文件中平级的位置,添加如下内容

     
    cross-origin  
    org.eclipse.jetty.servlets.CrossOriginFilter  
      
        allowedOrigins  
        *  
      
      
        allowedMethods  
        GET,POST  
      
      
        allowedHeaders  
        x-requested-with,content-type  
      
   

3.3 找到文件中平级的位置,添加如下内容

     
    cross-origin  
    /*  
   

3.4 重启geoserver(任务管理器,服务项中找到geoserver,右键)

4.发布wfs服务矢量图层,geojson格式地址

5.使用arcgis api调用时注意添加跨域服务器:

 require([
"esri/request","esri/config",
],function(esriRequest,esriConfig){
esriConfig.request.corsEnabledServers.push("http://192.168.1.171:8080");
///http可加可不加,端口必须加
})
function getData() {
        var url = "http://192.168.1.171:8080/geoserver/cite/ows?service=WFS&version=1.0.0&request=GetFeature&typeName=cite:pgis_city&maxFeatures=50&outputFormat=application%2Fjson";
        return esriRequest(url, {
          responseType: "json"
        });
      }


Cesium

1.安装nodejs

2.下载源码解压,运行npm install

3.与上面的geoserver的8080端口冲突,先改下server.js

var yargs = require('yargs').options({        'port' : {            'default' : 8892,

4.npm run ,node server.js





POSTgreSQL+postgis

1. 文档

https://www.postgresql.org/docs/10/static/tutorial-install.html

2.下载安装

默认用户密码postgres ,默认端口5432

3.安装完默认运行stack

安装postgis


你可能感兴趣的:(geoserver+postgis开发环境搭建,再加cesuim)