From 8a80fb9af32955ebb408647568e61e72b59f8659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?junh=5Feee=28=EC=9D=B4=EC=A4=80=ED=9D=AC=29?= Date: Wed, 13 Dec 2023 13:43:34 +0900 Subject: [PATCH] =?UTF-8?q?laanc=20=EB=B9=84=ED=96=89=ED=83=80=EC=9E=85=20?= =?UTF-8?q?=EB=B9=84=EA=B0=80=EC=8B=9C=EA=B6=8C=20=EB=AA=A8=EB=8B=AC?= =?UTF-8?q?=EC=B0=BD=20=ED=95=9C=EA=B8=80=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/laanc/map/LaancDrawControl.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/laanc/map/LaancDrawControl.js b/src/components/laanc/map/LaancDrawControl.js index a649f63..94a8d96 100644 --- a/src/components/laanc/map/LaancDrawControl.js +++ b/src/components/laanc/map/LaancDrawControl.js @@ -377,7 +377,7 @@ export const LaancDrawControl = props => { let text = ''; if (mode === 'CIRCLE') { if (data.radius > 1000) { - text = 'circle의 경우 반경'; + text = '원의 경우 반경'; isBreak = true; } } else { @@ -387,8 +387,8 @@ export const LaancDrawControl = props => { if (distance > 1000) { text = mode === 'LINE' - ? 'waypoint의 경우 점과 점 사이가' - : 'polygon의 경우 변과 변 사이가'; + ? '선의 경우 점과 점 사이가' + : '다각형의 경우 변과 변 사이가'; isBreak = true; break; }