如何通过Geoserver获得矢量图块?

时间:2017-01-10 02:37:02

标签: geoserver vector-tiles

在这些日子里,我对一个大问题很着迷 - 如何通过Geoserver获得矢量图块?我已经找了很多文档和博客,并且有一些有用的资源来解决这个问题,如果一步一步操作很简单: http://suite.opengeo.org/docs/latest/dataadmin/vectortiles/index.html;

但经过这些操作,我仍然没有成功,我想知道原因,如果你有一些想法,请与我分享,谢谢你的亲切〜

ps:控制台有一些消息,也许它很有用: 关于gwc播种:

10一月10:27:45 INFO [seed.SeedTask] - GWC播种机Thread-4完成(重新)播种层cn:192个瓷砖和2秒后的道路。

10一月10:27:45 INFO [seed.SeedTask] - GWC播种机Thread-3完成(重新)播种层cn:80个瓷砖和2秒后的道路。

10一月10:27:45 INFO [seed.GWCTask] - 线程组在2.578秒后完成SEED任务

我没有足够的声誉,因此我将邮件复制到此处而不是发送图片,抱歉

// *********** ****************************

我已经添加了vector-tiles插件,

并且在我请求磁贴时出现了一些错误:

  

http://localhost:8080/geoserver/gwc/service/tms/1.0.0/cite:DLZXX_2011_PL_10000@EPSG%3A4326@geojson/11/1673/891.geojson 404(未找到)

//获取矢量图块的代码

var vectorTile = new ol.layer.VectorTile({

        //get source
        source: new ol.source.VectorTile({
            format:new ol.format.GeoJSON(),
            tileGrid: ol.tilegrid.createXYZ({
                maxZoom:14
            }),
            tilePixelRatio:1,
            url:'/geoserver/gwc/service/tms/1.0.0/'+layerName
              +'@EPSG%3A4326@geojson/{z}/{x}/{y}.geojson'
        }),
        style:initStyle
    });

    map.addLayer(vectorTile);

每个Tile GET请求的标头

Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encodin: gzip, deflate
Accept-Language: zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3
Cookie: JSESSIONID=9679B11893A04A0ACE21D49D93AB7CDC
Host: localhost:8080
Referer: http://localhost:8080/23DPlatform/index.jsp
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0

回应标题

Content-Disposition :inline; filename=geoserver-dispatch.text
Content-Encoding: gzip
Content-Type: text/plain
Date: Tue, 10 Jan 2017 13:01:09 GMT
Server: Apache-Coyote/1.1
Transfer-Encoding:chunked

// *********** ******************

也许你可以阅读这个问题,有一些类似的

  

Ionic / Leaflet - Can't get Tiles 404 Not Found (from cache)

1 个答案:

答案 0 :(得分:4)

我已经通过geoserver和openLayers3获得了矢量切片。

1)geoserver(GeoWebcache)中的矢量切片动态创建,所以你 不需要单击GeoWebcache管理页面上的播种按钮;

2)数据的投影是一个非常重要的参数,OL3中的默认投影是EPSG:3857。 所以你需要确保投影(图层,来源,瓷砖网格)相同;

PS:我在博客上写下了这个过程:

  

http://www.cnblogs.com/escage/p/6387529.html

抱歉,这是中文博客,如果您对这些话题有任何疑问,可以 通过电子邮件与我联系:

<强> ericliuneverlost@163.com