This repository has been archived by the owner on Dec 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (70 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
<title>NPS Buildings (Alaska)</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="leaflet-search/leaflet-search.src.css">
<script type="text/javascript" src="lib/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="app/main.js"></script>
<script type="text/javascript" src="map.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="leaflet-search/leaflet-search.src.js"></script>
</head>
<body>
<!-- Header Section-->
<div id="header">
<div id="headerText">
<h1 id="title">title</h1>
<h2 id="subtitle">subtitle</h2>
</div>
<div id="logoArea">
<div id="organizationText">
Alaska Region<br/><br/>
National Park Service<br/>
U.S. Department of the Interior <br/>
</div>
<div id="logo">
<img src="images/ArrowheadNoBackground.png" height="25" alt="National Park Service Arrowhead">
</div>
</div>
</div>
<div id="map"></div>
<!--
<div id="mobileTitlePage"></div>
<div id="mainWindow">
<div id="paneLeft">
<ul id="myList" class="tilelist"></ul>
<div class="noFeature">
<span class="noFeatureText">
No items are in your current map extent.
Zoom out to see places.
</span>
<span class="tooManyFeaturesText">
There are too many items visible to list.
Zoom in to a specific area.
</span>
</div>
</div>
<div id="map"></div>
</div>
-->
<script>
(function() {
var s = document.createElement('script');
s.src = '/npmap/npmap-bootstrap.js';
document.body.appendChild(s);
})();
(function() {
var s = document.createElement('script');
s.src = 'app/run.js';
document.body.appendChild(s);
})();
photos = {};
$.getJSON( "/fmss/photos.json", function( data ) {
photos = data;
});
</script>
</body>
</html>