fix: 위치보기 수정 (도면 오버플로우 제한 및 API 호출 경로 정상화)

This commit is contained in:
이태훈
2026-06-22 13:56:52 +09:00
parent f41f2378d7
commit 237ac9ee25
3 changed files with 13 additions and 6 deletions

View File

@@ -537,6 +537,8 @@
background-color: var(--canvas-soft-2);
border-radius: 4px;
overflow: hidden;
max-width: 100%;
max-height: 100%;
}
.layout-map-container.readonly {
@@ -546,12 +548,15 @@
.image-marker-wrapper {
position: relative;
display: inline-block;
max-width: 100%;
max-height: 100%;
}
.layout-map-img {
display: block;
max-width: 100%;
max-height: 75vh;
max-height: 70vh;
object-fit: contain;
user-select: none;
-webkit-user-drag: none;
}