23 lines
636 B
PHP
Executable File
23 lines
636 B
PHP
Executable File
<?php
|
|
$lat = $_GET['latitude'];
|
|
$lon = $_GET['longitude'];
|
|
?>
|
|
<!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 = <?= $lat ?>, lng = <?= $lon ?>;
|
|
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>
|