-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhelp.html
79 lines (66 loc) · 2.93 KB
/
help.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
78
79
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Parkadelphia</title>
<!-- OG & Metadata -->
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- <meta name="viewport" content="width=devicewidth, minimal-ui">-->
<meta property="og:title" content="Parkadelphia" />
<meta property="og:url" content="https://parkadelphia.com" />
<meta property="og:site_name" content="Parkadelphia" />
<meta property="og:image" content="" />
<meta property="og:description" content="Street parking information in Philadelphia" />
<meta name="twitter:card" content="photo" />
<meta name="twitter:site" content="@laurenancona" />
<meta name="twitter:creator" content="@laurenancona" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- <link rel="image_src" href="" />-->
<!--CSS-->
<link rel="stylesheet" href="css/vendor/material-lime-lt-blue_1-1-0.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:200,400,700" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!--JS-->
<script defer src="js/vendor/material_1-1-0.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!--ICONS-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet">
</head>
<body>
<!-- COUNT ALL THE THINGS -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-W6WFRN" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start': new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-W6WFRN');
</script>
<!-- End Google Tag Manager -->
<h5>Keyboard Shortcuts</h5>
<ul>
<li><code>=</code> / <code>+</code>: increase zoom level by 1</li>
<li><code>Shift-=</code> / <code>Shift-+</code>: increase zoom level by 2</li>
<li><code>-</code>: decrease zoom level by 1</li>
<li><code>Shift--</code>: decrease zoom level by 2</li>
<li>Arrow keys: pan by 80 pixels</li>
<li><code>Shift+⇢</code>: increase rotation by 2 degrees</li>
<li><code>Shift+⇠</code>: decrease rotation by 2 degrees</li>
<li><code>Shift+⇡</code>: increase pitch by 5 degrees</li>
<li><code>Shift+⇣</code>: decrease pitch by 5 degrees</li>
</ul>
</body>
</html>