-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
39 lines (38 loc) · 1.75 KB
/
archive.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Napa, Sonoma fire data via Suomi/VIIRS (375m resolution)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" href="https://mapzen.com/js/mapzen.css" />
<script src="https://mapzen.com/js/mapzen.min.js"></script>
<style>
html, body { margin: 0; padding: 0; }
#map { height: 100%; width: 100%; position: absolute; }
</style>
</head>
<body>
<div id="map"></div>
<script>
var map = L.Mapzen.map('map', {
center: [38.4294, -122.5822],
zoom: 10,
tangramOptions: {
scene: 'https://mapzen.com/api/scenes/22/1119/resources/blank.yaml',
attribution: '© <a href="https://www.mapzen.com/rights">Mapzen</a>, <a href="https://openstreetmap.org/copyright">OpenStreetMap</a>, <a href="https://earthdata.nasa.gov/earth-observation-data/near-real-time/firms/active-fire-data">NASA/NOAA</a>, and <a href="https://www.mapzen.com/rights/#services-and-data-sources">others</a>'
}
});
L.Mapzen.hash({
map: map
})
L.control.scale().addTo(map);
L.Mapzen.bug({
name: 'Sonoma & Napa VIIRS fire map',
link: 'https://github.com/burritojustice/sonoma-napa-fire-map-viirs',
tweet: 'fire map of Napa & Sonoma, Sun-Fri, using VIIRS/Suomi data, made with @mapzen',
repo: 'https://github.com/burritojustice/sonoma-napa-fire-map-viirs',
description: 'Zoomable map of the Napa & Sonoma fires, Sun, 9 Oct to Mon, 16 Oct 2017, ~12 hours per color, brighter colors newer data. 375m meter resolution, data via NASA/NOAA VIIRS I-Band Active Fire Data on Suomi polar orbiting satellite.'
});
</script>
</body>
</html>