我正在尝试显示我自己创建的矢量切片(.pbf),它们在检查元素的控制台上没有显示没有错误。 我通过使用一个简单的示例html文件来调度它们: here
我刚刚更改了网址,以便在本地服务器而不是mapbox服务器上查找矢量切片。
当我尝试从mapbox服务器显示pbf文件时: ,它会显示出来。此外,我已经下载了这些mapbox pbf文件,并从本地服务器提供了相同的文件。
但是我使用tippecanoe从geojson文件创建的pbf文件不能通过openlayers显示。生成的pbf文件是正确的,因为我能够使用mapbox js脚本来显示它们。 我有cors,服务器的内容编码也是gzip。 可以从中下载附加代码未显示但通过tileserver-gl(mapbox脚本)显示的示例pbf文件 here
代码:
<!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>
答案 0 :(得分:0)
您使用的是OpenLayers 4.5,而不是OpenLayers 5.X,请尝试上传您的OpenLayers版本。