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 ( '
' +