-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (79 loc) · 3.05 KB
/
Copy pathindex.html
File metadata and controls
82 lines (79 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Map Bayarin.</title>
<link rel="stylesheet" href="./css/style.css" type="text/css" />
<link rel="stylesheet" href="./../../../assets/css/styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"
/>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body class="body_maps">
<!-- Navbar -->
<header>
<div class="logo">
<h1 style="font-family: poppins, serif; font-weight: 700">Bayar-in.</h1>
</div>
<nav>
<ul>
<li><a href="/dashboard">Kembali ke Dashboard</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<div class="head">
<h1 style="font-family: poppins, serif">
Universitas Logistik dan Bisnis Internasional
</h1>
<p style="font-family: poppins, serif">
Untuk informasi lebih lengkap, silahkan datang ke tempat kamu!
</p>
<p>Map ini Untuk Mencari Wilayah/Desa, Jika Ingin Mencari Jalan, Tekan <a href="/mapr" style="font-weight: bolder;">disini</a></p>
</div>
<div class="container mt-4">
<div class="row">
<!-- Map -->
<div class="col-lg-8 mb-5">
<div id="map"></div>
</div>
<div class="col">
<div class="col mt-2 popup">
<button id="toggle-btn" class="mb-3 w-100 btn_toggle">Show</button>
<div id="toggle-content" class="card p-3 hidden">
<h5 class="card-title">Cari Wilayah</h5>
<button id="regionSearch" class="btn btn-secondary w-100 mb-3">
Cari
</button>
<button id="btn-distance" class="btn btn-secondary w-100 mb-3 d-none">
Hitung
</button>
</div>
<div class="card mt-4">
<div id="region-info" class="border p-2 bg-light rounded">
<p><strong>Longitude:</strong> <span id="longitude"></span></p>
<p><strong>Latitude:</strong> <span id="latitude"></span></p>
<p><strong>District:</strong> <span id="district"></span></p>
<p><strong>Province:</strong> <span id="province"></span></p>
<p><strong>Sub-district:</strong> <span id="sub-district"></span></p>
<p><strong>Village:</strong> <span id="village"></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/croot.js" type="module"></script>
<script src="js/script.js"></script>
<script src="/bayar-in.github.io/assets/js/script.js"></script>
</body>
</html>