-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (32 loc) · 1.26 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
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css" />
<link rel="stylesheet" href="./vendor/stylesheets/leaflet-search.min.css" />
<link rel="stylesheet" href="./assets/stylesheets/application.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
</head>
<body>
<div class="map-box">
<div id="map"></div>
<div class="legend">Geburtsorte mit <strong>mindestens 100 Personen</strong> aus dem Düsseldorfer Einwohnerregister</div>
<div class="result-box">
<strong>Gibt es Zugezogene aus Ihrem Geburtsort?</strong>
<br><br>
<div class="sub-box">
<input type="text" placeholder="Tippen Sie einen Städtenamen ein ...">
</div>
<br>
<div class="sub-box">
<div id="result"></div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js"></script>
<script src="./vendor/javascripts/leaflet-search.min.js"></script>
<script src="./assets/javascripts/application.js"></script>
</body>
</html>