41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>ITAM Map Coordinate Editor v3.0</title>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Left: File Selector -->
|
|
<div class="file-sidebar" id="file-sidebar">
|
|
<!-- Rendered by MapEditor.ts -->
|
|
</div>
|
|
|
|
<!-- Center: Main Editor -->
|
|
<div class="editor-container" id="container">
|
|
<div class="img-wrapper" id="wrapper">
|
|
<img src="" id="target-img" alt="Map Image">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Right: Control Panel -->
|
|
<div class="sidebar">
|
|
<h2>Map Editor <small style="font-size: 0.6em; color: #888;">v3.0</small></h2>
|
|
<div class="current-path" id="current-path">파일을 선택하세요</div>
|
|
<p>
|
|
드래그하여 구역을 정의하세요. 저장 버튼을 누르면 즉시 시스템에 반영됩니다.
|
|
</p>
|
|
|
|
<div class="box-list" id="box-list"></div>
|
|
|
|
<div class="actions">
|
|
<button class="btn btn-outline" style="height:38px;" onclick="clearAll()">전체 삭제</button>
|
|
<button id="btn-save-server" class="btn btn-primary" style="height:38px;" onclick="saveToServer()">서버에 즉시 저장</button>
|
|
<div id="save-status"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="module" src="/src/map-editor-main.ts"></script>
|
|
</body>
|
|
</html>
|