-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (24 loc) · 805 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
<title>Fetching Data from API</title>
</head>
<body>
<h1>Training receiving data from an API</h1>
<p>
latitude: <span id="lat"></span> <br />
longitude: <span id="lon"></span>
</p>
<div id="issMap" style="height: 300px;width: 800px">
</div>
<script src=" index.js">
</script>
</body>
</html>