diff --git a/src/assets/css/custom.css b/src/assets/css/custom.css index 8601db29..896f0bec 100644 --- a/src/assets/css/custom.css +++ b/src/assets/css/custom.css @@ -1077,4 +1077,6 @@ caption {overflow: hidden; line-height: 0;text-indent: -2000px;} .pal-form .pal-form-btn button + button{margin-left:20px} .pal-popover-body{font-size:0.75rem;padding:0.8rem;} -.pal-popover-icon{margin-left:4px;margin-top:-2px} \ No newline at end of file +.pal-popover-icon{margin-left:4px;margin-top:-2px} + +.coords-wrap{position:absolute;z-index: 99;right:20px;bottom:20px} \ No newline at end of file diff --git a/src/components/cstmrService/faq/FaqForm.js b/src/components/cstmrService/faq/FaqForm.js index 0c121978..dcb77980 100644 --- a/src/components/cstmrService/faq/FaqForm.js +++ b/src/components/cstmrService/faq/FaqForm.js @@ -41,7 +41,7 @@ export default function FaqForm({ { const { value } = e.target; @@ -63,7 +63,7 @@ export default function FaqForm({ { diff --git a/src/components/cstmrService/inquiry/QnaSearchBox.js b/src/components/cstmrService/inquiry/QnaSearchBox.js index c30aeef6..4868c9ae 100644 --- a/src/components/cstmrService/inquiry/QnaSearchBox.js +++ b/src/components/cstmrService/inquiry/QnaSearchBox.js @@ -32,7 +32,7 @@ export default function QnaSearchBox() { { const { value } = e.target; @@ -60,7 +60,7 @@ export default function QnaSearchBox() { { const { value } = e.target; @@ -85,7 +85,7 @@ export default function QnaSearchBox() { { const { value } = e.target; diff --git a/src/views/laanc/LaancAreaMap.js b/src/views/laanc/LaancAreaMap.js index 8615d2fd..5069370a 100644 --- a/src/views/laanc/LaancAreaMap.js +++ b/src/views/laanc/LaancAreaMap.js @@ -318,17 +318,9 @@ export default function LaancAreaMap({
-
+
{mapObject ? ( - //
-
+
{drawObj.getAll().features.length > 1 ? drawObj .getAll() @@ -340,23 +332,20 @@ export default function LaancAreaMap({ : obj.geometry.coordinates[0]; return ( -
-
비행구역 {i + 1}
- {coord?.map(co => { - const fCoord = FormattingCoord(co); - if (fCoord) { - return ( -
- {fCoord[0]}, {fCoord[1]} -
- ); - } - })} +
+
비행구역 {i + 1}
+
+ {coord?.map(co => { + const fCoord = FormattingCoord(co); + if (fCoord) { + return ( + + {fCoord[0]}, {fCoord[1]} + + ); + } + })} +
); })