-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (31 loc) · 1.58 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Stadia Maps Embedded Example</title>
<meta charset="utf-8" />
<!-- <link rel="shortcut icon" href="/favicon.ico" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="Neher Data Systems - Stadia Maps Embedded Example" />
<meta name="keywords" content="Neher Data Systems, Neher Data, neherdata, nds, stafia" />
<meta name="author" content="Neher Data Systems" />
<link rel="stylesheet" type='text/css' href="style.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" />
<script type="text/javascript" src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
</head>
<body>
<h1>Stadia Maps Embedded Example</h1>
<h2>Neher Data Systems</h2>
<div id="map">
</div>
<script type="text/javascript">
var map = L.map('map').setView([40.3083382, -74.0697479], 12);
L.tileLayer('https://tiles.stadiamaps.com/tiles/alidade_smooth/{z}/{x}/{y}{r}.png?api_key=2ef07327-870b-4b5c-a33e-9035387ffdac', {
maxZoom: 20,
attribution: '© <a href="https://stadiamaps.com/" target="_blank">Stadia Maps</a>, © <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> © <a href="https://www.openstreetmap.org/copyright" target="_blank">OpenStreetMap</a>',
}).addTo(map);
</script>
</body>
<footer>
<p>© 2024 <a href="https://stadiamaps.com/">Stadia</a> and <a href="https://www.neherdata.com/">Neher Data Systems</a></p>
</footer>
</html>