41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="html">
|
|
<head>
|
|
<title>Leaflet GeoJSON - Population Europe</title>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@latest/dist/leaflet.css"/>
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.css"/>
|
|
<link crossorigin="anonymous" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
|
|
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" rel="stylesheet">
|
|
<link href="style.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="mx-5 my-2">
|
|
<div class="row">
|
|
<h1 class="col text-center">Aufgabe 1</h1>
|
|
</div>
|
|
<div class="row mb-5">
|
|
<div class="col">
|
|
<div id="map" style="height: 40rem" class="w-auto"></div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<h1 class="col text-center">Aufgabe 2</h1>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col">
|
|
<div id="poiMap" style="height: 50rem" class="w-auto"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="http://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
<script src="https://unpkg.com/leaflet@latest/dist/leaflet.js"></script>
|
|
<script src="https://unpkg.com/leaflet-control-geocoder/dist/Control.Geocoder.js"></script>
|
|
<script src="aufgabe1.js"></script>
|
|
<script src="aufgabe2.js"></script>
|
|
</body>
|
|
</html> |