48 lines
1.7 KiB
PHP
48 lines
1.7 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="https://unpkg.com/leaflet-draw/dist/leaflet.draw.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="legend">
|
|
<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 src="https://unpkg.com/leaflet-draw/dist/leaflet.draw.js"></script>
|
|
<script src="https://unpkg.com/leaflet-geometryutil/src/leaflet.geometryutil.js"></script>
|
|
<script src="../js/draw_geometri.js"></script>
|
|
|
|
</body>
|
|
</html>
|