-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1018 Bytes
/
index.html
File metadata and controls
30 lines (30 loc) · 1018 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Team 3 website</title>
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""
/>
<link rel="stylesheet" href="style.css" />
<script
src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""
></script>
<script src="main.js"></script>
</head>
<body onload="start()" onresize="start()">
<div>
<!-- <h1>Welcome to my website!</h1>
<p>This is my first HTML page.</p>
<p>Testing out OSM</p> -->
</div>
<a href="#" onClick="move()">Pan to</a>
<a href="#" onClick="clearInterval(iterateID)">stop</a>
<div id="map_area" style="width: 800px; height: 800px"></div>
</body>
</html>