我的 openlayer 在错误的位置显示矢量图块。我正在使用 Node.js 并在 openlayer 中添加 geojson 格式的矢量切片,但是 URL 中返回的切片 xyz 不正确,我该怎么办?
我添加了 tilegrid 但似乎没有什么区别。
这是我的代码:
new VectorTileLayer({
style:styleFunction,
source: new VectorTileSource({
projection:'EPSG:4326',
url:'http://localhost:3000/FacilityInSpecificTilegeojson x_tile={x}&y_tile={y}&zoom={z}',
format: new GeoJSON(),
wrapX:true
})
}),