-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
43 lines (39 loc) · 1.96 KB
/
map.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>San Francisco Street Name History</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin="" />
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM="
crossorigin=""></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dom-to-image/2.6.0/dom-to-image.js"></script>
</head>
<body>
<main>
<nav>
<div id="navhead">
<h1>History of San Francisco Street Names</h1>
<div class="tabs">
<a href="#streets" id='streetsTab' onclick="return app.showtab('streets')" class="selected">Streets</a>
<a href="#hoods" id='hoodsTab' onclick="return app.showtab('hoods')">Neighborhoods</a>
<a href="#people" id='peopleTab' onclick="return app.showtab('people')" style="display:none;">People</a>
<a href="#landmarks" id='landmarksTab' onclick="return app.showtab('landmarks')">Landmarks</a>
</div>
</div>
<div id="navlists">
<div id="streets" class="navpane viewing"></div>
<div id="hoods" class="navpane"></div>
<div id="people" class="navpane"></div>
<div id="landmarks" class="navpane"></div>
</div>
</nav>
<div id="map"></div>
</main>
<script src="map.js"> </script>
</body>
</html>