-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathindex.html
37 lines (37 loc) · 1.06 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
<!doctype html>
<html
lang="en"
class="text-gray-900 antialiased dark:bg-gray-800 dark:text-white"
>
<head>
<meta charset="UTF-8" />
<title>Draw radius circles on a map</title>
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Simple tool to draw circles of a given radius on top of a Google Map."
/>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📍</text></svg>"
/>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-KNBDB9LS14"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-KNBDB9LS14')
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>