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; }