-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 2.04 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 2.04 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>HexaGlobe H3 Explorer</title>
<meta
name="description"
content="Interactive H3 grid explorer with hexagon overlays, map layers, and AI-assisted insights for geospatial analysis."
/>
<meta name="robots" content="index, follow" />
<meta name="application-name" content="HexaGlobe H3 Explorer" />
<meta name="theme-color" content="#f8fafc" />
<meta name="color-scheme" content="light" />
<meta property="og:type" content="website" />
<meta property="og:title" content="HexaGlobe H3 Explorer" />
<meta
property="og:description"
content="Interactive H3 grid explorer with hexagon overlays, map layers, and AI-assisted insights for geospatial analysis."
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="HexaGlobe H3 Explorer" />
<meta
name="twitter:description"
content="Interactive H3 grid explorer with hexagon overlays, map layers, and AI-assisted insights for geospatial analysis."
/>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "HexaGlobe H3 Explorer",
"description": "Interactive H3 grid explorer with hexagon overlays, map layers, and AI-assisted insights for geospatial analysis.",
"applicationCategory": "GeospatialApplication",
"operatingSystem": "All"
}
</script>
</head>
<body class="bg-slate-50 text-slate-900">
<div id="root"></div>
<noscript>Enable JavaScript to use HexaGlobe H3 Explorer.</noscript>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>