diff --git a/WebGIS_SPBU/index.html b/WebGIS_SPBU/index.html index 5e38590..418f2e9 100644 --- a/WebGIS_SPBU/index.html +++ b/WebGIS_SPBU/index.html @@ -314,10 +314,18 @@ } function showToast(msg, type = 'info') { - const el = document.getElementById('toast'); - el.textContent = msg; - el.className = 'show' + (type ? ' ' + type : ''); - setTimeout(() => { el.className = ''; }, 3000); + const container = document.getElementById('toast'); + const toast = document.createElement('div'); + toast.className = `toast-item toast-${type}`; + toast.textContent = msg; + container.appendChild(toast); + + setTimeout(() => { + toast.style.opacity = '0'; + toast.style.transform = 'translateX(30px)'; + toast.style.transition = 'all 0.3s ease'; + setTimeout(() => toast.remove(), 300); + }, 3000); } // ============================================================ diff --git a/index.html b/index.html index b159733..4fc30a9 100644 --- a/index.html +++ b/index.html @@ -20,7 +20,6 @@ 🌐
Portal WebGIS - Koleksi Tugas Praktikum
@@ -32,9 +31,9 @@

Selamat datang

-

Semua Tugas WebGIS
Dalam Satu Tempat

+

Portal Tugas WebGIS

- Pilih modul di bawah untuk membuka aplikasi WebGIS. Setiap modul menggunakan + Pilih Tugas di bawah untuk membuka aplikasi WebGIS. Setiap Tugas menggunakan LeafletJS, PHP REST API, dan MySQL sebagai backend.

@@ -44,10 +43,11 @@
- Pertemuan 2–3 + Pertemuan 2

WebGIS SPBU Pontianak

-

Layer Groups & Layers Control untuk data SPBU. Marker dikelompokkan berdasarkan status buka 24 jam.

+

Layer Groups & Layers Control untuk data SPBU. Marker dikelompokkan berdasarkan status buka 24 + jam.

  • Layer Group: Buka 24 Jam / Tidak 24 Jam
  • Base map OSM & Citra Satelit
  • @@ -57,8 +57,9 @@ Leaflet · PHP · MySQL Buka Aplikasi - - + +
@@ -68,10 +69,11 @@
🛣️
- Tugas Utama + Pertemuan 1

Manajemen Jalan & Parsil

-

Sistem manajemen data jalan (LineString) dan parsil tanah/kavling (Polygon) dengan pengukuran otomatis.

+

Sistem manajemen data jalan (LineString) dan parsil tanah/kavling (Polygon) dengan pengukuran + otomatis.