-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.67 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
41
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="View map tiles on map easily." />
<meta name="keywords" content="Leaflet, tiles, map tiles, slippy tiles, XYZ tiles, mapping, web maps">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Map Tiles View: Leaflet, Slippy, and XYZ Tiles Guide">
<meta property="og:description" content="View map tiles on map easily.">
<meta property="og:image" content="%BASE_URL%preview.png">
<meta property="og:url" content="https://duoquote.github.io/map-tiles-view/">
<meta property="og:type" content="article">
<meta property="og:site_name" content="Map Tiles View">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Map Tiles View: Leaflet, Slippy, and XYZ Tiles Guide">
<meta name="twitter:description" content="View map tiles on map easily.">
<meta name="twitter:image" content="%BASE_URL%preview.png">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap"
/>
<style>
html, body, #root {
height: 100%;
}
</style>
<title>Map Tiles View | XYZ Tiles</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>