import { useState } from 'react'; import '@mapbox/mapbox-gl-draw/dist/mapbox-gl-draw.css'; import type { FeatureCollection } from 'geojson'; import { MapLibre } from '../shared/maplibre/MapLibre'; import { useFeatureCollection } from './hooks'; import { DrawLayer } from './components/DrawLayer'; import { CadastreLayer } from './components/CadastreLayer'; import { AddressInput } from './components/AddressInput'; import { PointInput } from './components/PointInput'; import { ImportFileInput } from './components/ImportFileInput'; import { FlashMessage } from '../shared/FlashMessage'; export default function MapEditor({ featureCollection: initialFeatureCollection, url, adresseSource, options, champId }: { featureCollection: FeatureCollection; url: string; adresseSource: string; options: { layers: string[] }; champId: string; }) { const [cadastreEnabled, setCadastreEnabled] = useState(false); const { featureCollection, error, ...actions } = useFeatureCollection( initialFeatureCollection, { url } ); return ( <> {error && } {options.layers.includes('cadastres') ? ( setCadastreEnabled((enabled) => !enabled)} enabled={cadastreEnabled} /> ) : null} ); }