add larger bound to map limit

This commit is contained in:
BuckarooBanzay 2024-06-28 16:38:13 +02:00
parent 6687482a26
commit 7db8f767ca

View File

@ -9,6 +9,8 @@ import RealtimeTileLayer from './RealtimeTileLayer.js';
import config from '../config.js'; import config from '../config.js';
const BORDER_BOUNDS = 5000;
export function createMap(node, layerId, zoom, lat, lon){ export function createMap(node, layerId, zoom, lat, lon){
const cfg = config.get(); const cfg = config.get();
@ -20,8 +22,8 @@ export function createMap(node, layerId, zoom, lat, lon){
zoom: zoom, zoom: zoom,
crs: SimpleCRS, crs: SimpleCRS,
maxBounds: L.latLngBounds( maxBounds: L.latLngBounds(
L.latLng(-31000, -31000), L.latLng(-31000-BORDER_BOUNDS, -31000-BORDER_BOUNDS),
L.latLng(31000, 31000) L.latLng(31000+BORDER_BOUNDS, 31000+BORDER_BOUNDS)
) )
}); });