-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 889 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Interactive Landmarks Map</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<link rel="stylesheet" href="styles.css" />
<h1>Folsom Historic Tree Map</h1>
</head>
<body>
<div id="treeInfo" class="modal tree-Info">
<div class="modal-content tree-info-content">
<span class="close" onclick="closeModal()">×</span>
<div id="tree-info-content"></div>
</div>
</div>
<div id="photoViewerModal" class="modal photo-viewer-modal">
<div class="photo-viewer-container">
<span class="close"onclick="closePhotoViewerModal()">×</span>
</div>
</div>
<div id="map" class='map'></div>
<script src="scripts.js"></script>
</body>
</html>