我正在尝试显示我自己创建的矢量图块(.pbf),它们在检查元素的控制台上没有显示且没有错误。我通过在以下位置使用一个简单的示例 html 文件来显示它们: 这里
我只是更改了 url 以在本地服务器而不是 mapbox 服务器上查找矢量切片。
当我尝试从 mapbox server: 显示 pbf 文件时,它会显示出来。我还下载了这些 mapbox pbf 文件,并从它们显示的本地服务器提供了相同的文件。
但是我使用tippecanoe从geojson文件创建的pbf文件无法由openlayers显示。生成的pbf文件是正确的,因为我可以使用mapbox js脚本显示它们。我有cors,服务器的内容编码也是gzip。可以从此处下载未由附加代码显示但由 tileserver-gl(mapbox 脚本)显示的示例 pbf 文件
代码:
<!DOCTYPE html>
<html>
<head>
<title>Mapbox Vector Tiles</title>
<link rel="stylesheet"href="https://openlayers.org/en/v4.5.0/css/ol.css" type="text/css">
<!-- The line below is only needed for old environments like Internet Explorer and Android 4.x -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<script src="https://openlayers.org/en/v4.5.0/build/ol.js"></script>
<script src="https://openlayers.org/en/v4.5.0/examples/resources/mapbox-streets-v6-style.js"></script>
<script src='https://api.mapbox.com/mapbox.js/v3.1.1/mapbox.js'></script>
<style>
.map {
background: #f8f4f0;
}
</style>
</head>
<body>
<div id="map" class="map"></div>
<script>
var key = 'pk.eyJ1IjoiYWhvY2V2YXIiLCJhIjoiRk1kMWZaSSJ9.E5BkluenyWQMsBLsuByrmg';
var map = new ol.Map({
layers: [
new ol.layer.VectorTile({
declutter: true,
source: new ol.source.VectorTile({
attributions: '© <a href="https://www.mapbox.com/map-feedback/">Mapbox</a> ' +
'© <a href="https://www.openstreetmap.org/copyright">' +
'OpenStreetMap contributors</a>',
format: new ol.format.MVT(),
url: 'http://localhost:8000/tippecanoe_tiles/' + '{z}/{x}/{y}.pbf'
//url: 'https://{a-d}.tiles.mapbox.com/v4/mapbox.mapbox-streets-v6/' +
// '{z}/{x}/{y}.vector.pbf?access_token=' + key
}),
style: createMapboxStreetsV6Style(ol.style.Style, ol.style.Fill, ol.style.Stroke, ol.style.Icon, ol.style.Text)
})
],
target: 'map',
view: new ol.View({
center: [0, 0],
zoom: 2
})
});
</script>
</body>
</html>