77 lines
3.2 KiB
PHP
77 lines
3.2 KiB
PHP
<?php include("core.php"); ?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Carte Sabradou</title>
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
<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">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>
|
|
<!--<input type="submit"value="Localiser sur une carte">-->
|
|
</form>
|
|
</div>
|
|
<div class="container">
|
|
<div class="map-column">
|
|
<?php
|
|
if (isset($_GET['calendrier'])) {
|
|
$jour = $_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>');
|
|
});
|
|
</script>
|
|
<?php } ?>
|
|
</div>
|
|
<div class="cities-column">
|
|
<ul class="cities">
|
|
<?php $citiesList = getCities('https://www.sabradou.com/index.php'); ?>
|
|
<?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>
|