From 28b2f2034bf719c5d1305e8beeb7e8ceea4e1ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=B0=95=EC=83=81=ED=98=84?= Date: Wed, 25 Oct 2023 23:43:54 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B9=84=ED=96=89=20=EA=B3=A0=EB=8F=84=20?= =?UTF-8?q?=EA=B4=80=EC=A0=9C=20=EC=B2=B4=ED=81=AC=20api=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/laanc/map/LaancAreaMap.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/laanc/map/LaancAreaMap.js b/src/components/laanc/map/LaancAreaMap.js index bcd59a0..70d4fb8 100644 --- a/src/components/laanc/map/LaancAreaMap.js +++ b/src/components/laanc/map/LaancAreaMap.js @@ -7,6 +7,7 @@ import { useEffect, useMemo, useState } from 'react'; import { useDispatch, useSelector } from 'react-redux'; import { Card, CardBody } from 'reactstrap'; import { initFlightBas } from '../../../modules/basis/flight/models/basisFlightModel'; +import * as LaancAction from '../../../modules/laanc/actions/laancActions'; import { AREA_COORDINATE_LIST_SAVE, FLIGHT_PLAN_AREA_BUFFER_LIST, @@ -300,7 +301,8 @@ export default function LaancAreaMap({ } else { setMapAreaCoordList(areaList); } - + dispatch(LaancAction.LAANC_ALTITUDE.request(areaList)); + dispatch(LaancAction.LAANC_VALID_AREA.request(areaList)); dispatch(FLIGHT_PLAN_AREA_INAIRAREA.request(areaList)); };