【发布时间】:2020-08-08 00:25:04
【问题描述】:
我的地图包含多个特征,所有这些特征的 id 都存储在一个数组中:featureIds。
我的应用程序包含一个按钮,用于切换某些功能的可见性。
我正在开发一个 JavaScript 函数 reCenter() 来跟踪这个切换。此功能根据现在可见的特征边界“缩小”并重新调整地图视图。
function reCenter() {
// new array for visible features
var visibleFeatures = [];
// retrieve the features which are visible and put them into the new array
for (var i = 0; i < featureIds.length; i++) {
if (map.getLayoutProperty(featureIds[i], "visibility") == "visible") {
visibleFeatures.push(map.queryRenderedFeatures(featureIds[i]));
}
}
// new array to store coordinates
coordinates = [];
// push coordinates for each visible feature to coordinates array
for (var j = 0; j < visibleFeatures.length; j++) {
coordinates.push(coord.geometry.coordinates);
}
// do fit as shown here : https://docs.mapbox.com/mapbox-gl-js/example/zoomto-linestring/
var bounds = coordinates.reduce(function (bounds, coord) {
return bounds.extend(coord);
}, new mapboxgl.LngLatBounds(coordinates[0], coordinates[0]));
map.fitBounds(bounds, {
padding: 20
});
}
尽管执行了上述操作并遵循https://docs.mapbox.com/mapbox-gl-js/example/zoomto-linestring/ 提供的指导。我收到以下错误:TypeError: this._sw is undefined
如何最好地动态检索可见特征的所有坐标并将它们传递给map.fitBounds()?
【问题讨论】:
标签: javascript mapbox