Lint and format
This commit is contained in:
parent
f684d4e2c8
commit
0c377190ba
1 changed files with 21 additions and 18 deletions
|
@ -35,7 +35,9 @@
|
|||
<title>RuscoMap</title>
|
||||
</head>
|
||||
<body>
|
||||
<button id="addMarkerBtn"><img src="../img/marker-icon18.png" alt="Button Image" /></button>
|
||||
<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">
|
||||
|
@ -73,7 +75,7 @@
|
|||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div id="map"> </div>
|
||||
<div id="map"></div>
|
||||
|
||||
<!-- bottone gps -->
|
||||
<!-- <button id="gps-button" type="button">
|
||||
|
@ -81,14 +83,12 @@
|
|||
<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 />
|
||||
<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
|
||||
|
@ -102,9 +102,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div id="version">
|
||||
|
||||
</div>
|
||||
<div id="version"></div>
|
||||
<script>
|
||||
function closePopup() {
|
||||
const popup = document.getElementById("popup");
|
||||
|
@ -113,11 +111,11 @@
|
|||
// Popup si chiude automaticamente dopo 13 secondi
|
||||
setTimeout(closePopup, 13000);
|
||||
|
||||
window.addEventListener('load', async () => {
|
||||
window.addEventListener("load", async () => {
|
||||
const response = await fetch(`/version`);
|
||||
const {version} = await response.json()
|
||||
const domVersion = document.querySelector('#version');
|
||||
|
||||
const { version } = await response.json();
|
||||
const domVersion = document.querySelector("#version");
|
||||
|
||||
domVersion.innerHTML = `v${version}`;
|
||||
|
||||
/*
|
||||
|
@ -136,6 +134,11 @@
|
|||
|
||||
<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>
|
||||
<script
|
||||
defer
|
||||
type="module"
|
||||
type="text/javascript"
|
||||
src="/js/map.js"
|
||||
></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue