forked from ICEI-PUC-Minas-PPLES-TI/plf-es-2024-2-ti1-0385100-plf-es-2024-2-ti1-0385100-ti1-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapa.html
68 lines (58 loc) · 2.13 KB
/
mapa.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mapa de Psicólogos</title>
<!-- Incluindo o CSS do Leaflet -->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" />
<style>
/* Define a altura para o mapa */
#map {
height: 100vh;
width: 100%;
}
</style>
<!-- Incluindo o JavaScript do Leaflet -->
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"></script>
<script>
async function fetchPsicologos() {
try {
// Fazendo a requisição para o JSON Server
const response = await fetch('http://localhost:3000/api/psicologos');
const psicologos = await response.json();
return psicologos;
} catch (error) {
console.error('Erro ao buscar os psicólogos:', error);
}
}
async function initMap() {
// Criando o mapa centrado em Belo Horizonte
const map = L.map('map').setView([-19.9245, -43.9352], 13);
// Adicionando camada de tiles (mapa visual)
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Map data © <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
// Obtém os psicólogos via API
const psicologos = await fetchPsicologos();
// Loop para adicionar os marcadores dos psicólogos
psicologos.forEach(psicologo => {
const marker = L.marker([psicologo.lat, psicologo.long]).addTo(map);
// Exibindo um popup com informações sobre o psicólogo
marker.bindPopup(`
<h3>${psicologo.descricao}</h3>
<p><strong>Endereço:</strong> ${psicologo.endereco}</p>
<p><strong>Cidade:</strong> ${psicologo.cidade}</p>
<a href="${psicologo.url}" target="_blank">Ver mais detalhes</a>
`);
});
}
// Chama a função para inicializar o mapa ao carregar a página
window.onload = initMap;
</script>
</head>
<body>
<h1>Mapa de Psicólogos em Belo Horizonte</h1>
<div id="map"></div>
</body>
</html>