Files

52 lines
1.8 KiB
PHP

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebGIS Geometri - Point, Polyline, Polygon</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css"/>
<link rel="stylesheet" href="../css/style.css"/>
</head>
<body>
<header>
<a href="../" class="back-btn" title="Kembali ke Menu"></a>
<div class="logo">
<div class="logo-icon" style="background:#22c55e;">G</div>
<div class="logo-text">WEB<span>GIS</span> GEOMETRI</div>
</div>
<div class="header-divider"></div>
<span style="font-size:12px;color:var(--muted);">Point, Polyline, Polygon</span>
<div class="layer-control" style="margin-left:auto;">
<a href="login.php" class="layer-btn" style="text-decoration:none; color:#22c55e; border-color:#22c55e33;">Admin Login</a>
</div>
<div class="layer-sep"></div>
<div class="legend" style="margin-left:0;">
<div class="legend-item">
<div class="legend-dot" style="background:#3b82f6"></div> Point
</div>
<div class="legend-item">
<div class="legend-line" style="background:#a855f7"></div> Polyline/Jalan
</div>
<div class="legend-item">
<div class="legend-poly" style="background:#10b981"></div> Polygon/Parsil
</div>
</div>
</header>
<div id="map"></div>
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script>window.IS_ADMIN = false;</script>
<script src="../js/draw_geometri.js?v=<?= time() ?>"></script>
</body>
</html>