production/Vue/Maps/Geolocaliser.php
2026-05-12 12:11:16 +00:00

25 lines
677 B
PHP
Executable File

<?php
$lat = $_GET['latitude'];
$lon = $_GET['longitude'];
echo "Latitude => $lat ; Longitude => $lon";
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet/dist/leaflet.css"/>
</head>
<body>
<div id="map" style="width:100%; height:400px;"></div>
<script src="https://cdn.jsdelivr.net/npm/leaflet/dist/leaflet.js"></script>
<script>
const lat = 5.3484, lng = -4.0167;
const map = L.map('map').setView([lat, lng], 13);
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
L.marker([lat, lng]).addTo(map).bindPopup('Mon emplacement').openPopup();
</script>
</body>
</html>