Skip to content

Commit 10af11e

Browse files
committed
Ported code from World Sizes DS Demo
1 parent 8a1e4fd commit 10af11e

17 files changed

+1307
-68
lines changed

index.html

+25-1
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,38 @@
66
name="viewport"
77
content="initial-scale=1,maximum-scale=1,user-scalable=no"
88
/>
9-
<title>ArcGIS API for JavaScript Template</title>
9+
<title>World Sizes</title>
1010

1111
<link rel="stylesheet" href="/src/general.scss" />
12+
13+
<meta name="description" content="Compare countries through this interactive app created with the ArcGIS API for JavaScript"/>
14+
<meta name="twitter:title" content="World Sizes"/>
15+
<meta name="twitter:description" content="Compare countries through this interactive app created with the ArcGIS API for JavaScript"/>
16+
<meta name="twitter:card" content="summary_large_image"/>
17+
<meta name="twitter:image" content="https://arnofiva.github.io/world-sizes/thumbnail.png"/>
18+
<meta property="og:title" content="World Sizes"/>
19+
<meta property="og:description" content="Compare countries through this interactive app created with the ArcGIS API for JavaScript"/>
20+
<meta property="og:image" content="https://arnofiva.github.io/world-sizes/thumbnail.png"/>
21+
<meta property="og:url" content="https://arnofiva.github.io/world-sizes/"/>
22+
<meta property="og:type" content="website"/>
23+
24+
<link rel="icon" media="(prefers-color-scheme:dark)" type="image/png" sizes="32x32" href="https://www.esri.com/content/dam/esrisites/en-us/common/favicon/esri-favicon-dark-32.png">
25+
<link rel="icon" media="(prefers-color-scheme:light)" type="image/png" sizes="32x32" href="https://www.esri.com/content/dam/esrisites/en-us/common/favicon/esri-favicon-light-32.png">
1226
</head>
1327
<body>
1428
<div id="viewDiv">
29+
<h1 id="title">World Sizes</h1>
1530
</div>
1631
<calcite-loader scale="l" id="loader" active></calcite-loader>
1732
<script type="module" src="/src/main.ts"></script>
33+
34+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S8E7GJBGL1"></script>
35+
<script>
36+
window.dataLayer = window.dataLayer || [];
37+
function gtag(){dataLayer.push(arguments);}
38+
gtag('js', new Date());
39+
40+
gtag('config', 'G-S8E7GJBGL1');
41+
</script>
1842
</body>
1943
</html>

0 commit comments

Comments
 (0)