393 lines
11 KiB
HTML
393 lines
11 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Portal WebGIS Terpadu</title>
|
|
|
|
<!-- Google Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap"
|
|
rel="stylesheet">
|
|
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
|
|
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
|
|
|
|
<style>
|
|
:root {
|
|
--bg-body: #f8fafc;
|
|
--text-main: #0f172a;
|
|
--text-muted: #64748b;
|
|
--card-bg: #ffffff;
|
|
--border-color: #e2e8f0;
|
|
|
|
--accent-spbu: #2563eb;
|
|
--accent-spbu-light: #eff6ff;
|
|
|
|
--accent-geo: #625ff4;
|
|
--accent-geo-light: #eef0ff;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Plus Jakarta Sans', sans-serif;
|
|
background-color: var(--bg-body);
|
|
color: var(--text-main);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow-x: hidden;
|
|
padding: 3rem 2rem;
|
|
}
|
|
|
|
/* Leaflet Background Map */
|
|
#bg-map {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -2;
|
|
opacity: 1; /* Transparansi penuh agar peta jelas */
|
|
pointer-events: none;
|
|
filter: blur(6px) saturate(1.2); /* Efek blur kaca pada peta agar teks terbaca jelas */
|
|
transform: scale(1.05); /* Mencegah pinggiran putih karena blur */
|
|
}
|
|
|
|
/* Gradient Overlay agar teks tetap terbaca, sangat tipis karena peta sudah di-blur */
|
|
.map-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
background: rgba(248, 250, 252, 0.4);
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Decorative Glows */
|
|
.glow-blue {
|
|
position: absolute;
|
|
top: -10%;
|
|
left: -10%;
|
|
width: 50vw;
|
|
height: 50vw;
|
|
background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
|
|
border-radius: 50%;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.glow-purple {
|
|
position: absolute;
|
|
bottom: -10%;
|
|
right: -10%;
|
|
width: 50vw;
|
|
height: 50vw;
|
|
background: radial-gradient(circle, rgba(98, 95, 244, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
|
|
border-radius: 50%;
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1100px;
|
|
width: 100%;
|
|
z-index: 1;
|
|
position: relative;
|
|
}
|
|
|
|
/* Header Area */
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 8px 16px;
|
|
background: white;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 100px;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--text-muted);
|
|
letter-spacing: 1px;
|
|
margin-bottom: 1.5rem;
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.badge i {
|
|
color: #10b981;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
margin-bottom: 1rem;
|
|
letter-spacing: -1px;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.1rem;
|
|
color: var(--text-muted);
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
line-height: 1.6;
|
|
text-shadow: 0 0 10px white, 0 0 20px white;
|
|
/* Agar tetap terbaca di atas peta */
|
|
}
|
|
|
|
/* Project Cards */
|
|
.projects-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 2rem;
|
|
}
|
|
|
|
.project-card {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(226, 232, 240, 0.8);
|
|
border-radius: 24px;
|
|
padding: 2.5rem;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
transition: all 0.3s ease;
|
|
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.project-card::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 4px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card-spbu::after {
|
|
background-color: var(--accent-spbu);
|
|
}
|
|
|
|
.card-geo::after {
|
|
background-color: var(--accent-geo);
|
|
}
|
|
|
|
.project-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
|
|
border-color: transparent;
|
|
background: #ffffff;
|
|
}
|
|
|
|
.icon-wrap {
|
|
width: 64px;
|
|
height: 64px;
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.75rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.card-spbu .icon-wrap {
|
|
background-color: var(--accent-spbu-light);
|
|
color: var(--accent-spbu);
|
|
}
|
|
|
|
.card-geo .icon-wrap {
|
|
background-color: var(--accent-geo-light);
|
|
color: var(--accent-geo);
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.75rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1rem;
|
|
color: var(--text-main);
|
|
}
|
|
|
|
.desc {
|
|
font-size: 1rem;
|
|
color: var(--text-muted);
|
|
line-height: 1.6;
|
|
margin-bottom: 2rem;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
.tag {
|
|
padding: 6px 12px;
|
|
border-radius: 8px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
background-color: var(--bg-body);
|
|
border: 1px solid var(--border-color);
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.tag i {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.card-spbu .tag i {
|
|
color: var(--accent-spbu);
|
|
}
|
|
|
|
.card-geo .tag i {
|
|
color: var(--accent-geo);
|
|
}
|
|
|
|
.action-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-weight: 700;
|
|
font-size: 1rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.card-spbu .action-link {
|
|
color: var(--accent-spbu);
|
|
}
|
|
|
|
.card-geo .action-link {
|
|
color: var(--accent-geo);
|
|
}
|
|
|
|
.project-card:hover .action-link {
|
|
gap: 12px;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.projects-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.25rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Leaflet Background -->
|
|
<div id="bg-map"></div>
|
|
<div class="map-overlay"></div>
|
|
|
|
<div class="glow-blue"></div>
|
|
<div class="glow-purple"></div>
|
|
|
|
<div class="container">
|
|
|
|
<div class="header">
|
|
<div class="badge">
|
|
<i class="fa-solid fa-circle-check"></i> PORTAL SISTEM INFORMASI GEOGRAFIS
|
|
</div>
|
|
<h1>Eksplorasi Data Spasial<br>Kota Pontianak</h1>
|
|
<p class="subtitle">Platform terpadu untuk visualisasi dan manajemen data geografis. Silakan pilih aplikasi
|
|
di bawah ini untuk memulai.</p>
|
|
</div>
|
|
|
|
<div class="projects-grid">
|
|
|
|
<!-- Project 1 -->
|
|
<a href="webgis-spbu/" class="project-card card-spbu">
|
|
<div class="icon-wrap">
|
|
<i class="fa-solid fa-map-location-dot"></i>
|
|
</div>
|
|
<h2>Manajemen Tata Ruang & SPBU</h2>
|
|
<p class="desc">
|
|
Sistem Informasi Geografis komprehensif untuk pemetaan Point of Interest (SPBU), jaringan jalan, dan
|
|
parsel tanah di wilayah administratif.
|
|
</p>
|
|
<div class="tags">
|
|
<span class="tag"><i class="fa-solid fa-gas-pump"></i> SPBU</span>
|
|
<span class="tag"><i class="fa-solid fa-road"></i> Jaringan Jalan</span>
|
|
<span class="tag"><i class="fa-solid fa-vector-square"></i> Kavling Tanah</span>
|
|
</div>
|
|
<div class="action-link">
|
|
Buka Aplikasi <i class="fa-solid fa-arrow-right"></i>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Project 2 -->
|
|
<a href="webgis-geopoverty/" class="project-card card-geo">
|
|
<div class="icon-wrap">
|
|
<i class="fa-solid fa-hands-holding-child"></i>
|
|
</div>
|
|
<h2>GeoPoverty & Pemetaan Sosial</h2>
|
|
<p class="desc">
|
|
Platform interaktif pemetaan kemiskinan berbasis partisipasi rumah ibadah. Membantu identifikasi dan
|
|
distribusi bantuan sosial agar lebih tepat sasaran.
|
|
</p>
|
|
<div class="tags">
|
|
<span class="tag"><i class="fa-solid fa-users"></i> Data Kemiskinan</span>
|
|
<span class="tag"><i class="fa-solid fa-place-of-worship"></i> Rumah Ibadah</span>
|
|
<span class="tag"><i class="fa-solid fa-chart-pie"></i> Analisis Bantuan</span>
|
|
</div>
|
|
<div class="action-link">
|
|
Buka Aplikasi <i class="fa-solid fa-arrow-right"></i>
|
|
</div>
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script>
|
|
// Inisialisasi peta Pontianak sebagai background statis
|
|
var map = L.map('bg-map', {
|
|
zoomControl: false,
|
|
attributionControl: false,
|
|
dragging: false,
|
|
scrollWheelZoom: false,
|
|
doubleClickZoom: false,
|
|
boxZoom: false,
|
|
keyboard: false
|
|
}).setView([-0.026330, 109.342504], 14); // Koordinat Pontianak
|
|
|
|
// Menggunakan tile CartoDB Voyager yang lebih berwarna (hijau, biru, kuning) namun tetap terang
|
|
L.tileLayer('https://{s}.basemaps.cartocdn.com/rastertiles/voyager/{z}/{x}/{y}{r}.png', {
|
|
maxZoom: 19
|
|
}).addTo(map);
|
|
</script>
|
|
</body>
|
|
|
|
</html> |