-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (42 loc) · 1.45 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/mystyle.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/MarkerCluster.Default.css" />
<title>My test page</title>
</head>
<body>
<div class="banner">
<img src="img/grace_1.jpg" alt="Host Image"/>
</div>
<h2>Grace Cho</h2>
<h3>GIS Professional</h3>
<div>Master student</div>
<div>Geoinformatics for urbanised society University of Tartu</div>
<nav>
<a href="index.html" class="active">Basic Map</a>
<a href="heatmap.html">Heatmap</a>
<a href="choroplethmap.html">Choropleth Map</a>
</nav>
<!-- Title -->
<div class="title">
<h1>Basic Map</h1>
</div>
<div id="map"></div> <!-- Map container -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.markercluster.js"></script>
<script src="js/javascript.js"></script>
<button onclick="defaultMapSettings()">Default</button>
<div class="hero-image">
<img src="img/photographer.jpg" alt="Hero Image"/>
<div class="hero-text">
<h4>I am John Doe</h4>
<p>And I'm a Photographer</p>
<button>Hire me</button>
</div>
</div>
</body>
</html>