aboutsummaryrefslogtreecommitdiff
path: root/internal/admin/templates/map.html
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-30 02:17:22 -0400
committerhistoria <[not public]>2026-06-30 02:17:22 -0400
commit7a4b91304061777e7b3365b505d1e74878043d35 (patch)
tree4440b95c6ed4425f19919a4e74890607d008feec /internal/admin/templates/map.html
parent069d3c1c81d71042706372df153254487a765dfc (diff)
downloadthehouseoficarus-7a4b91304061777e7b3365b505d1e74878043d35.tar.gz
feat: web gui mapping and obj/item/mob placement improvements
Diffstat (limited to 'internal/admin/templates/map.html')
-rw-r--r--internal/admin/templates/map.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/admin/templates/map.html b/internal/admin/templates/map.html
index 7f8d5a1..869ee67 100644
--- a/internal/admin/templates/map.html
+++ b/internal/admin/templates/map.html
@@ -1,5 +1,11 @@
{{define "body-map"}}
<div class="layout">
+ <div class="panel panel-left" id="disconnectedPanel">
+ <div class="panel-header">Disconnected Rooms</div>
+ <div id="disconnectedList" style="overflow-y:auto;flex:1">
+ <p style="color:#888;text-align:center;margin-top:20px;font-size:11px">None</p>
+ </div>
+ </div>
<div class="main" id="mapContainer">
<div class="z-controls">
<button onclick="changeZ(-1)">-</button>
@@ -7,6 +13,8 @@
<button onclick="changeZ(1)">+</button>
<button onclick="changeZ(0)" style="width:auto;font-size:11px">Reset</button>
<select id="dirSelect" onchange="changeDir(this.value)" style="margin-left:8px;padding:3px 6px;font-size:11px;background:var(--input-bg);color:var(--text);border:1px solid var(--input-border);border-radius:3px;font-family:monospace"></select>
+ <button onclick="zoomIn()" title="Zoom in" style="margin-left:8px;width:auto;font-size:14px">&#x2795;</button>
+ <button onclick="zoomOut()" title="Zoom out" style="width:auto;font-size:14px">&#x2796;</button>
</div>
<svg id="mapSvg" style="width:100%;height:100%"></svg>
<div class="room-tooltip" id="tooltip" style="display:none"></div>