From 3603c71fab129798fd4689141e4461323fa60e74 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, 4 Oct 2023 15:34:36 +0900 Subject: [PATCH] =?UTF-8?q?laanc=20=EC=83=81=EC=84=B8=EB=A7=B5=20=EA=B1=B0?= =?UTF-8?q?=EB=A6=AC=ED=91=9C=EC=B6=9C=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utility/DrawUtil.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utility/DrawUtil.js b/src/utility/DrawUtil.js index 1a10545..3de240a 100644 --- a/src/utility/DrawUtil.js +++ b/src/utility/DrawUtil.js @@ -50,7 +50,9 @@ export const handlerGetMidPoint = (dis1, dis2) => { // html Content 반환 export const handlerGetHtmlContent = distance => { const text = - typeof distance === 'number' ? fromMetersToText(distance) : distance; + typeof distance === 'number' + ? '거리 ' + fromMetersToText(distance) + : distance; return ( '
' +