1
0
Fork 0
SabradouMap/index.php

101 lines
4.3 KiB
PHP

<?php include("core.php"); ?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Carte des brocantes référencées sur le site Sabradou.com</title>
<script src="index.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="header">
<h1>GÉOLOCALISATION DES BROCANTES RÉFÉRENCÉES</h1>
<h2>SUR LE SITE <a href="https://www.sabradou.com/" target="_blank">SABRADOU.COM</a></h2>
<form if="form" action="index.php" method="GET">
<label for="calendrier">Géolocaliser les brocantes du </label>
<select name="calendrier" onchange="this.form.submit();" id="calendrier-list">
<?php $calendrier = getCalendrier(); ?>
<?php foreach ($calendrier as $item): ?>
<?php $selected = isset($_GET['calendrier']) && $_GET['calendrier'] === $item['url'] ? 'selected' : ''; ?>
<option value="<?php echo $item['url']; ?>" <?php echo $selected; ?>><?php echo $item['node']; ?>
</option>
<?php endforeach; ?>
</select>
</form>
</div>
<div class="container">
<div class="map-column">
<?php
$jour = isset($_GET['calendrier']) ? $_GET['calendrier'] : '';
$citiesList = getCities($jour);
$citiesGeoCode = geocode($citiesList);
?>
<div id="map"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.7.1/leaflet.js"></script>
<script>
// Tableau des villes et des coordonnées
var cities = <?php echo json_encode($citiesGeoCode); ?>;
// Créer la carte
var map = L.map('map').setView([50.5095, 2.6683], 9);
// Ajouter une couche de tuiles OpenStreetMap à la carte
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Carte OpenStreetMap'
}).addTo(map);
// Placer des marqueurs pour chaque ville sur la carte
cities.forEach(function (city) {
var marker = L.marker([city.lat, city.lon]).addTo(map);
marker.bindPopup('<a href="' + city.href + '" target="_blank">' + city.name + '</a>');
});
if ("geolocation" in navigator) {
navigator.geolocation.getCurrentPosition(function (position) {
var lat = position.coords.latitude;
var lon = position.coords.longitude;
// Créer une icône CSS personnalisée avec une taille ajustée selon le niveau de zoom
var customIcon = L.divIcon({
className: 'red-marker',
iconSize: [15, 15], // Taille du marqueur ajustée
iconAnchor: [5, 5],
popupAnchor: [0, -3]
});
// Ajouter le marqueur avec l'icône personnalisée à la position de l'utilisateur
var marker = L.marker([lat, lon], { icon: customIcon }).addTo(map)
.bindPopup('Vous êtes là !')
// Centrer la carte sur la position de l'utilisateur
map.setView([lat, lon], 9);
});
}
</script>
</div>
<div class="cities-column">
<ul class="cities">
<?php $jour = isset($_GET['calendrier']) ? $_GET['calendrier'] : ''; ?>
<?php $citiesList = getCities($jour); ?>
<?php echo '<h3>' . getDatejour($jour) . '</h3>'; ?>
<?php if (isset($citiesList)): ?>
<?php foreach ($citiesList as $city): ?>
<li>
<?php
echo '<a href="' . $city['href'] . '" target="_blank">' . $city['name'] . '</a>'; ?>
</li>
<?php endforeach; ?>
<?php endif; ?>
</ul>
</div>
</div>
</body>
</html>