add first version real geo-access

This commit is contained in:
Alessio Prato 2025-08-02 02:57:45 +02:00
parent 45c7e94096
commit 2f32706bda
4 changed files with 135 additions and 1 deletions

View file

@ -58,6 +58,20 @@
.btn-coordinates:hover {
background-color: #F57C00;
}
.btn-gps {
background-color: #9C27B0;
color: white;
}
.btn-gps:hover {
background-color: #7B1FA2;
}
.btn-molinella {
background-color: #795548;
color: white;
}
.btn-molinella:hover {
background-color: #5D4037;
}
.result {
background-color: #f9f9f9;
border: 1px solid #ddd;
@ -94,6 +108,8 @@
<button class="btn-get" onclick="getData()">📥 GET Data</button>
<button class="btn-post" onclick="createData()">📤 POST Data</button>
<button class="btn-coordinates" onclick="createCoordinates()">📍 POST Coordinates</button>
<button class="btn-gps" onclick="checkGPSLocation()">🌍 Check GPS Location</button>
<button class="btn-molinella" onclick="sendMolinellaCoordinates()">🏘️ Send Molinella coordinates</button>
</div>
<div id="status"></div>