-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmamap.html.bak
23 lines (22 loc) · 945 Bytes
/
mamap.html.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
</head>
<body>
<h1>This is a header</h1>
<p>This is a paragraph of text with a <a href="https://uni-tuebingen.de/">hyperlink</a>.</p>
<div id="mapid" style="width: 600px; height: 400px; position: relative;"></div>
<script>
var mymap = L.map('mapid').setView([48.5240689842294, 9.055857159484786
]).setZoom(30);
L.tileLayer('https://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png').addTo(mymap);
var markBota = L.marker([48.523549, 9.057546]).addTo(mymap);
</script>
</body>
</html>