diff --git a/traque-front/components/team/map.jsx b/traque-front/components/team/map.jsx index 15b5132..5e70585 100644 --- a/traque-front/components/team/map.jsx +++ b/traque-front/components/team/map.jsx @@ -15,7 +15,7 @@ function MapPan(props) { useEffect(() => { if(!initialized && props.center) { - map.flyTo(props.center, DEFAULT_ZOOM); + map.flyTo(props.center, DEFAULT_ZOOM, {animate: false}); setInitialized(true) } },[props.center]);