1

我正在尝试在开放图层地图版本 4.3.3 中的栅格图块上渲染矢量图块。两个图块都在渲染,但矢量图块没有显示在光栅图块上。例如,我有一个状态的矢量图块,并希望它在光栅图块顶部显示为半透明层。我已经将我的矢量切片存储在 S3 存储桶上,并且 tileLoadFunction 从 S3 存储桶中获取这些切片。我没有设置任何预测。我认为 tileLoadFunction 有一些默认投影。

以下是我显示两个图块的代码:

var map = new ol.Map({
    layers: [
        new ol.layer.Tile({
            name: 'Tile',
            type: 'GeoJSON',
            source: new ol.source.XYZ({
                url: 'https://api.tiles.mapbox.com/v4/mapbox.emerald/{z}/{x}/{y}.png?access_token=' + MAPBOX_KEY
            })
        }),

        new ol.layer.VectorTile({
            name: 'VectorTile',
            type: 'MVT',
            source: new ol.source.VectorTile({
                format: new ol.format.MVT(),
                renderMode: 'vector',
                tileGrid: ol.tilegrid.createXYZ({ maxZoom: 14 }),
                url: 'data',
                tileLoadFunction: tileLoadFunction                    
            }),                 
            style: new ol.style.Style({
                fill: new ol.style.Fill({
                    color: 'rgba(0, 0, 0, 0.5)'
                }),
                stroke: new ol.style.Stroke({
                    color: 'white',
                    width: 3
                })
            })
        })
    ],
    target: 'map',
    view: new ol.View({
        center: [-7400327.330457623, 2062576.7712471967],
        maxZoom: 20,
        minzoom: 2,
        zoom: 8       
    })
});

 function tileLoadFunction(tile, url) {
   getSignedUrl(url, function(s3Url) {
   var loader = ol.featureloader.loadFeaturesXhr(s3Url, tile.getFormat(), 
                          tile.onLoad.bind(tile),                                                 
                          tile.onError.bind(tile));
        tile.setLoader(loader);
    }

任何人都可以指导一下,这里缺少什么将矢量切片正确显示为光栅切片上的半透明图层?

谢谢,

4

1 回答 1

0

以下是我为自定义矢量和栅格图层所做的示例项目。认为这将帮助您解决问题。

https://github.com/NisalSP9/openlayers

于 2017-10-03T06:26:17.223 回答