feat(scope): make Belgium and North Sea operational default
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-22 02:11:48 +02:00
parent 46884cbbc9
commit 0aff8e3b8c
61 changed files with 2499 additions and 194 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
import { useEffect, useRef, useState } from 'react'
import maplibregl from 'maplibre-gl'
import 'maplibre-gl/dist/maplibre-gl.css'
import { PRIMARY_FOCUS_CENTER } from '../config/primaryFocus'
import { NATIONAL_MAP_CENTER, NATIONAL_MAP_ZOOM } from '../config/primaryFocus'
import { featureCollectionBounds } from '../lib/geojsonBounds'
import type { MapImageOverlay, MapViewportState, VectorSelectionBBox } from '../types'
@@ -221,8 +221,8 @@ function GeoMap({
const map = new maplibregl.Map({
container: containerRef.current,
style: defaultMapStyle(),
center: PRIMARY_FOCUS_CENTER,
zoom: 11,
center: NATIONAL_MAP_CENTER,
zoom: NATIONAL_MAP_ZOOM,
attributionControl: false,
})
const resizeObserver = new ResizeObserver(() => {