89 lines
3 KiB
TypeScript
89 lines
3 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { CursorClickIcon } from '@heroicons/react/outline';
|
|
import 'maplibre-gl/dist/maplibre-gl.css';
|
|
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';
|
|
import { ComboSearchProps } from '../ComboSearch';
|
|
|
|
export default function MapEditor({
|
|
featureCollection: initialFeatureCollection,
|
|
url,
|
|
options,
|
|
autocompleteAnnounceTemplateId,
|
|
autocompleteScreenReaderInstructions
|
|
}: {
|
|
featureCollection: FeatureCollection;
|
|
url: string;
|
|
options: { layers: string[] };
|
|
autocompleteAnnounceTemplateId: ComboSearchProps['announceTemplateId'];
|
|
autocompleteScreenReaderInstructions: ComboSearchProps['screenReaderInstructions'];
|
|
}) {
|
|
const [cadastreEnabled, setCadastreEnabled] = useState(false);
|
|
|
|
const { featureCollection, error, ...actions } = useFeatureCollection(
|
|
initialFeatureCollection,
|
|
{ url }
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<p className="fr-hint-text fr-mb-2w">
|
|
Besoin d'aide ?
|
|
<a
|
|
href="https://doc.demarches-simplifiees.fr/pour-aller-plus-loin/cartographie"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
consulter les tutoriels video
|
|
</a>
|
|
</p>
|
|
{error && <FlashMessage message={error} level="alert" fixed={true} />}
|
|
|
|
<ImportFileInput featureCollection={featureCollection} {...actions} />
|
|
<AddressInput
|
|
featureCollection={featureCollection}
|
|
screenReaderInstructions={autocompleteScreenReaderInstructions}
|
|
announceTemplateId={autocompleteAnnounceTemplateId}
|
|
/>
|
|
|
|
<MapLibre layers={options.layers}>
|
|
<DrawLayer
|
|
featureCollection={featureCollection}
|
|
{...actions}
|
|
enabled={!cadastreEnabled}
|
|
/>
|
|
{options.layers.includes('cadastres') ? (
|
|
<>
|
|
<CadastreLayer
|
|
featureCollection={featureCollection}
|
|
{...actions}
|
|
enabled={cadastreEnabled}
|
|
/>
|
|
<div className="cadastres-selection-control mapboxgl-ctrl-group">
|
|
<button
|
|
type="button"
|
|
onClick={() =>
|
|
setCadastreEnabled((cadastreEnabled) => !cadastreEnabled)
|
|
}
|
|
title="Sélectionner les parcelles cadastrales"
|
|
className={cadastreEnabled ? 'on' : ''}
|
|
>
|
|
<CursorClickIcon className="icon-size" />
|
|
</button>
|
|
</div>
|
|
</>
|
|
) : null}
|
|
</MapLibre>
|
|
<PointInput featureCollection={featureCollection} />
|
|
</>
|
|
);
|
|
}
|