-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (57 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Für Mobilgeräte initialen Zoom abschalten -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Angaben für Suchmaschinen -->
<!-- Beschreibung -->
<meta name="description" content="View Wikipedia Summaries">
<!-- Stichwörter -->
<meta name="keywords" content="Knowledge, Wiki, Summary">
<link id="css" rel="stylesheet" type="text/css" href="css/index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- async Seite weiterladen während Skript eingelesen wird!! -->
<script src="js/index.js" async></script>
<title>Nearby Places</title>
</head>
<body onload="on_load()">
<h1 id="header">Nearby Places</h1>
<p id="geoloc">
<button id="btn_geoloc" onclick="start_button()">Suche nach Orten in der Nähe</button>
</p>
<div class="alert" id="geo_error">
<span class="alert-close" data-close="alert" title="Close">×</span>
<strong>Standort Fehler</strong> - <div id="p_geoloc"></div>
</div>
<div id="list"></div>
<div id="place">
<p id="description"></p>
<section id="main">
<div id="text">
<p id="summary"></p>
<p id="link"></p>
</div>
<div id="img_wrapper">
<img id="thumbnail" src=""/>
</div>
</section>
<iframe id="map" src="" frameborder='0' scrolling='no' marginheight='0' marginwidth='0'></iframe>
</div>
<br><br><br>
<div id="spin_wrapper"></div>
<div class="alert" id="reload_info">
<span class="alert-close" data-close="alert" title="Close">×</span>
<strong>Auto-Reload</strong> - aktualisiert die Seite basierend auf ihrem Standort.
</div>
<div class="footer">
<label class="switch">
<input type="checkbox" onclick="auto_reload()" id="auto_reload">
<span class="slider round"></span>
<p id="switch_text">Auto-Reload</p>
</label>
<button id="reload" onclick="refresh_back_button()">Neu laden</button>
</div>
<div id="copyright">Daten und Bilder sind von der ©Wikimedia Foundation Inc. bereitgestellt.</div>
</body>
</html>