|
import gradio as gr
|
|
|
|
|
|
def update_map():
|
|
|
|
map_html = '''
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Monitoramento em Tempo Real</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
|
|
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
|
|
<style>
|
|
#map {
|
|
height: 400px;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3>Localização Atual:</h3>
|
|
<div id="map"></div>
|
|
<script>
|
|
// Função que obtém as coordenadas do dispositivo (celular)
|
|
function getLocation() {
|
|
if (navigator.geolocation) {
|
|
navigator.geolocation.getCurrentPosition(function(position) {
|
|
const lat = position.coords.latitude;
|
|
const lng = position.coords.longitude;
|
|
|
|
// Atualiza o mapa com as coordenadas obtidas
|
|
const map = L.map('map').setView([lat, lng], 15);
|
|
|
|
// Adiciona o tile do OpenStreetMap
|
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
|
}).addTo(map);
|
|
|
|
// Adiciona o marcador
|
|
const marker = L.marker([lat, lng]).addTo(map);
|
|
marker.bindPopup("Localização Atual: " + lat + ", " + lng).openPopup();
|
|
}, function(error) {
|
|
alert("Erro ao obter a localização: " + error.message);
|
|
});
|
|
} else {
|
|
alert("Geolocalização não é suportada neste navegador.");
|
|
}
|
|
}
|
|
|
|
// Chama a função para obter a localização do celular
|
|
getLocation();
|
|
</script>
|
|
</body>
|
|
</html>
|
|
'''
|
|
return map_html
|
|
|
|
|
|
iface = gr.Interface(
|
|
fn=update_map,
|
|
inputs=[],
|
|
outputs=gr.HTML(),
|
|
live=True,
|
|
title="Monitoramento em Tempo Real com OSM e Leaflet",
|
|
description="Veja a localização em tempo real com o OpenStreetMap",
|
|
)
|
|
|
|
|
|
iface.launch(share=True)
|
|
|