Make Mol the primary operating context
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-13 17:47:21 +02:00
parent e2ddf84c74
commit e8eecb2895
14 changed files with 179 additions and 21 deletions
+3 -2
View File
@@ -1,6 +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'
interface GeoMapProps {
data: GeoJSON.FeatureCollection | null
@@ -162,8 +163,8 @@ function GeoMap({
const map = new maplibregl.Map({
container: containerRef.current,
style: defaultMapStyle(),
center: [5.3, 51.3],
zoom: 9,
center: PRIMARY_FOCUS_CENTER,
zoom: 11,
attributionControl: false,
})
map.addControl(new maplibregl.NavigationControl(), 'top-right')