Files
2026-06-13 10:54:54 +07:00

73 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<base target="_top">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Map - Universitas Tanjungpura</title>
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
const map = L.map('map').setView([-0.0553, 109.3495], 16);
const tiles = L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 19,
attribution: '&copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(map);
const marker = L.marker([-0.0553, 109.3495]).addTo(map)
.bindPopup('<b>Tugu Bambu Runcing</b><br />Universitas Tanjungpura, Pontianak').openPopup();
const circle = L.circle([-0.0553, 109.3495], {
color: 'red',
fillColor: '#f03',
fillOpacity: 0.5,
radius: 100
}).addTo(map).bindPopup('Area Tugu Bambu Runcing');
const polygon = L.polygon([
[-0.0548, 109.3490],
[-0.0558, 109.3488],
[-0.0560, 109.3502]
]).addTo(map).bindPopup('Area Kampus Untan');
const popup = L.popup()
.setLatLng([-0.0553, 109.3495])
.setContent('Tugu Bambu Runcing - Untan')
.openOn(map);
function onMapClick(e) {
popup
.setLatLng(e.latlng)
.setContent(`Koordinat: ${e.latlng.toString()}`)
.openOn(map);
}
map.on('click', onMapClick);
</script>
</body>
</html>
```