<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/layout}">
<head>
<meta charset="UTF-8" th:remove="tag">
<script th:src="@{/custom/cities.js}"></script>
</head>
<body onload='loadMap()'>
<!-- サイドバーの表示 -->
<div layout:fragment="sidebar" th:replace="~{fragments/sidebar :: sidebar}">
</div>
<!-- コンテンツの表示 -->
<div layout:fragment="content">
<main class="offcanvas-outside bg-light">
<div class="container-fluid">
<!-- トグルボタン -->
<div th:replace="~{fragments/sidebar :: toggler}">
</div>
<div class="row">
<div class="col">
<div class="card shadow">
<div class="card-header">
<h6 class="text-navy my-2">Plateau 3D都市データ</h6>
</div>
<div class="card-body">
<!-- マップ -->
<div id="wrap">
<div class="header">
<div id='map'></div>
</div>
<!-- ポップアップ -->
<div id='popup' class='ol-popup'>
<a href='#' id='popup-closer' class='ol-popup-closer'></a>
<div id='popup-content'></div>
</div>
</div>
<!--
<div th:if="${mappers.size() == 0}">
該当データがありません
</div>
-->
<table class="table table-bordered">
<thead>
<tr>
<th th:text="#{status}"></th>
<th th:text="#{citycode}"></th>
<th th:text="#{cityname}"></th>
<th th:text="#{folder}"></th>
<th></th>
</tr>
</thead>
<tbody>
<tr th:each="city : ${cities}" th:object="${city}">
<td th:text="*{status}"></td>
<td th:text="*{citycode}"></td>
<td th:text="*{cityname}"></td>
<td th:text="*{folder}"></td>
<td>
<a th:href="@{/mesh/{citycode}(citycode=*{citycode})}" class="btn btn-navy">
<i class="bi bi-pencil-square" th:text="#{operation}"></i>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</body>
</html>