-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfogo_foco.html
More file actions
56 lines (44 loc) · 998 Bytes
/
fogo_foco.html
File metadata and controls
56 lines (44 loc) · 998 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🔥 Fogo em Foco</title>
<!-- Leaflet CSS -->
<link rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"/>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
header {
background: linear-gradient(135deg, #e67e22, #d35400);
color: white;
padding: 15px 25px;
font-size: 1.3em;
font-weight: bold;
}
#map {
width: 100%;
height: 92vh;
}
</style>
</head>
<body>
<header>
🔥 Dashboard — Fogo em Foco
</header>
<div id="map"></div>
<!-- Leaflet JS -->
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script>
// Criar mapa centralizado no mundo
var map = L.map('map').setView([0, 0], 2);
// Camada OpenStreetMap
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© OpenStreetMap contributors'
}).addTo(map);
</script>
</body>
</html>