158 lines
4.7 KiB
HTML
158 lines
4.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="./js/dist/leaflet.css"
|
|
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
|
|
crossorigin=""
|
|
/>
|
|
<link rel="icon" type="image/png" sizes="16x16" href="../img/trashw.png" />
|
|
<script
|
|
src="./js/dist/leaflet.js"
|
|
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
|
|
crossorigin=""
|
|
></script>
|
|
<link rel="stylesheet" href="/css/map.css" />
|
|
|
|
<style>
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
html,
|
|
body,
|
|
#map {
|
|
height: 100%;
|
|
width: 100vw;
|
|
}
|
|
|
|
#version {
|
|
position: absolute;
|
|
font-family: monospace;
|
|
bottom: 0;
|
|
left: 0;
|
|
padding: 10px;
|
|
z-index: 9999;
|
|
background: white;
|
|
border-top-right-radius: 15px;
|
|
}
|
|
</style>
|
|
|
|
<!-- importa control.locate senza cdn -->
|
|
<link rel="stylesheet" href="./js/dist/L.Control.Locate.css" />
|
|
<title>RuscoMap</title>
|
|
</head>
|
|
<body>
|
|
<button id="addMarkerBtn">
|
|
<img src="../img/marker-icon18.png" alt="Add Marker" />
|
|
</button>
|
|
<div id="markerFormContainer">
|
|
<form id="markerForm" enctype="multipart/form-data">
|
|
<div id="noticeCoordsPicker" style="display: none">
|
|
<text
|
|
>Clicca sul punto della mappa in cui vuoi inserire il rusco
|
|
avvistato</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"></div>
|
|
|
|
<!-- bottone gps -->
|
|
<!-- <button id="gps-button" type="button">
|
|
<img src="../img/target30.png" alt="GPS" style="display: flex"> </button> -->
|
|
<div class="popup" id="popup">
|
|
<!-- <img src="qualcosa.jpg" alt="Popup Image"> -->
|
|
<p id="istruzioni">
|
|
<img src="../img/trashg.png" alt="rusco" 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 />
|
|
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>.
|
|
<br />
|
|
<br />
|
|
Clicca <a href="./tutorial.html">qui</a> per leggere il tutorial.
|
|
</p>
|
|
<div>
|
|
<button id="popupstart" type="button" onclick="closePopup()">X</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="version"></div>
|
|
<script>
|
|
function closePopup() {
|
|
const popup = document.getElementById("popup");
|
|
popup.style.display = "none";
|
|
}
|
|
// Popup si chiude automaticamente dopo 13 secondi
|
|
setTimeout(closePopup, 13000);
|
|
|
|
window.addEventListener("load", async () => {
|
|
const response = await fetch(`/version`);
|
|
const { version } = await response.json();
|
|
const domVersion = document.querySelector("#version");
|
|
|
|
domVersion.innerHTML = `v${version}`;
|
|
|
|
/*
|
|
// Add a click event listener to the button
|
|
const gpsButton = document.getElementById("gps-button");
|
|
gpsButton.addEventListener("click", function () {
|
|
if (lc.isFollowing()) {
|
|
lc.stop();
|
|
} else {
|
|
lc.start();
|
|
}
|
|
});
|
|
*/
|
|
});
|
|
</script>
|
|
|
|
<script defer src="./js/dayjs/dayjs.min.js"></script>
|
|
<script defer src="./js/dist/L.Control.Locate.min.js"></script>
|
|
<script
|
|
defer
|
|
type="module"
|
|
type="text/javascript"
|
|
src="/js/map.js"
|
|
></script>
|
|
</body>
|
|
</html>
|