答案 0 :(得分:0)
您可以简单地使用minZoom选项,并将其设置为3,这就是我所做的;)
this.map.setView(new L.LatLng(31.585692323629303, 35.19333585601518), 2);
L.tileLayer(`https://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png`, {
maxZoom: 20,
minZoom: 3,
attribution: 'HOT'
}).addTo(this.map);
在我的情况下使用角度,希望对您有帮助