我正在尝试从数组中动态渲染传单标记,并将边界拟合到它们所在的一般区域,是否有方法根据标记距离调整缩放?
目前它缩放得太近了。
下面是我的代码。
var bounds = new L.LatLngBounds();
allCoordinates.forEach(function (coordinates) {
console.log('coordinates: ', coordinates);
bounds.extend(coordinates);
});
leafletMap.fitBounds(bounds, { padding: [50, 50] });
暂无答案!
目前还没有任何答案,快来回答吧!