Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
ForceMapUpdate: Allow to force update the map or to go to specific po…
Browse files Browse the repository at this point in the history
…sition
  • Loading branch information
Seb-sti1 committed Oct 8, 2023
1 parent 02bac20 commit af68afe
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions frontend/src/Components/Map/ForceMapUpdate.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import { LatLng } from '../../models/models';
import { useMap } from 'react-leaflet';
import React, { useEffect } from 'react';

interface Props {
/** A modification of this value is used to trigger an update of the map */
triggerUpdate: number;
/** The coordinates of the map center*/
position?: LatLng;
}

/**
* This component is used to force an update of the map. It is used in conjunction with the useMap hook.
*/
const ForceMapUpdate: React.FC<Props> = ({ triggerUpdate, position }) => {
const map = useMap();

useEffect(() => {
map.invalidateSize();
}, [triggerUpdate]);

useEffect(() => {
if (position) {
map.flyTo(position);
}
}, [position]);

return null;
};

export default ForceMapUpdate;

0 comments on commit af68afe

Please sign in to comment.