我正在尝试在开放图层地图版本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);
}
任何人都可以指导,这里缺少什么来正确显示矢量切片作为栅格切片上的半透明层?
谢谢,