ruscomap/public/index.html
2024-08-24 15:12:53 +02:00

81 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<link rel="icon" type="image/png" sizes="16x16" href="../img/trashw.png">
<script
src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""
></script>
<link rel="stylesheet" href="/css/map.css" />
<title>RuscoMap</title>
</head>
<body>
<button id="addMarkerBtn">BottoneInserimento</button>
<div id="markerFormContainer">
<form id="markerForm" enctype="multipart/form-data">
<div id="noticeCoordsPicker" style="display: none;">
<text>Clicca o premi sulla mappa per selezionare la posizione dell'oggetto</text>
<input id="formInputCoordY" name="lat" type="hidden" />
<input id="formInputCoordX" name="long" type="hidden" />
</div>
<div id="remainingForm" style="display: none;">
<label>Nome</label>
<br>
<input name="name" required type="text" />
<br><br>
<label>Descrizione</label>
<br>
<textarea name="description" required></textarea>
<br><br>
<div class="file-upload">
<input name="image" required type="file" id="file-input" class="file-input" accept="image/x-png,image/jpeg,image/jpg"/>
<label for="file-input" class="file-label">Scegli File</label>
<br><br>
<span class="file-chosen"> </span>
</div>
<br>
<button>Aggiungi Marker</button>
</div>
</form>
</div>
<div id="map">
<script>
document.getElementById("addMarkerBtn").innerHTML = '<img src="../img/marker-icon18.png" alt="Button Image" />';
</script>
</div>
<div class="popup" id="popup">
<!-- <img src="qualcosa.jpg" alt="Popup Image"> -->
<p id="istruzioni">
<img src="../img/trashg.png" alt="Description of Image" width="20" height="20"><b>RuscoMap</b> è una mappa dove utenti in anonimo possono inserire dei marker con nome, descrizione e foto di oggetti abbandonati, segnalandoli a tutti i visitatori della mappa.
<br> <br>
Si può trovare o inserire la qualunque. L'obiettivo è il riutilizzo, la trasformazione o la riparazione.
<br><br>
Sulla falsa riga del <i>te lo regalo se vieni a prenderlo</i>, questo è più il <i>segnalo che c'è 'sta roba lì, è tua se te la vai a prendere</i>.
</p>
<div><button id="popupstart" type="button" onclick="closePopup()">X</button></div>
</div>
<script>
function closePopup() {
var popup = document.getElementById("popup");
popup.style.display = "none";
}
// Popup si chiude automaticamente dopo 5 secondi
setTimeout(closePopup,11000);
</script>
</body>
<footer>
<script type="module" type="text/javascript" src="/js/map.js"></script>
</footer>
</html>