-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (65 loc) · 2.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link
href="https://unpkg.com/[email protected]/dist/maplibre-gl.css"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Geojson.rocks - Preview and spot errors in your GeoJSON/TopoJSON
</title>
<meta
name="title"
content="Geojson.rocks - Preview and spot errors in your GeoJSON"
/>
<meta
name="description"
content="Drag & drop a GeoJSON or TopoJSON and preview it on top of a real-world map. geojson.rocks also you an error message if your file doesn't import. And it's very, very fast."
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://geojson.rocks/" />
<meta
property="og:title"
content="Geojson.rocks - Preview and spot errors in your GeoJSON/TopoJSON"
/>
<meta
property="og:description"
content="Drag & drop a GeoJSON or TopoJSON and preview it on top of a real-world map. geojson.rocks also you an error message if your file doesn't import. And it's very, very fast."
/>
<meta property="og:image" content="https://geojson.rocks/favicon.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary" />
<meta property="twitter:url" content="https://geojson.rocks/" />
<meta
property="twitter:title"
content="geojson.rocks - Preview and spot errors in your GeoJSON/TopoJSON"
/>
<meta
property="twitter:description"
content="Drag & drop a GeoJSON or TopoJSON and preview it on top of a real-world map. geojson.rocks also you an error message if your file doesn't import. And it's very, very fast."
/>
<meta
property="twitter:image"
content="https://geojson.rocks/favicon.png"
/>
</head>
<body>
<div class="info">
<h1>🪨 <span> Geojson.rocks </span></h1>
<p>Drag and drop your GeoJSON or TopoJSON file to preview it.</p>
</div>
<div id="app"></div>
<footer>
<small>
Made out of frustration by
<a href="https://alvin.codes">Alvin Bryan</a>. The Code is
<a href="https://github.com/alvinometric/geojson.rocks">on GitHub</a>.
</small>
</footer>
<script type="module" src="./src/main.js"></script>
</body>
</html>