-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
50 lines (39 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><%= SITE_CONFIG.title %> - View & Manipulate GeoTIFF rasters</title>
<meta name="description" content="<%= SITE_CONFIG.title %> is a simple, secure website for viewing and editing GeoTIFF raster files in your browser.">
<meta name="google-site-verification" content="-mc5mCHOrJnJX2QkYNhNlZCqOSRHUYgG50TkPbVJV6s" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/0.4.12/leaflet.draw.css" />
<link href="https://fonts.googleapis.com/css?family=Lalezar|Open+Sans:400,600,700" rel="stylesheet">
<!-- for vectorfield -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/chroma-js/1.3.0/chroma.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/leaflet-providers.js"></script>
<!-- Material Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<% if (SITE_CONFIG.google_analytics_id) { %>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
window.ga('create', '<%= SITE_CONFIG.google_analytics_id %>', 'auto');
window.ga('send', 'pageview');
</script>
<% } %>
<!-- Search Styles -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/style.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/assets/css/leaflet.css" />
<!-- Style Alerts -->
<script src="https://unpkg.com/[email protected]/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/sweetalert.css" />
</body>
</html>