-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_RufaiBalogun.html
48 lines (41 loc) · 1.93 KB
/
map_RufaiBalogun.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="keywords" content="Web Mapping, Template Creation, Software Development, IP">
<meta name="author" content="Rufai Balogun">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mobile Web Map Skeleton</title>
<!-- Link to the CSS File-->
<link rel="stylesheet" type="text/css" href="map_RufaiBalogun.css">
<!-- Addition of OpenLayers API and Style sheets-->
<link rel="stylesheet" href="https://openlayers.org/en/v5.3.0/css/ol.css" type="text/css">
<script src="https://openlayers.org/en/v5.3.0/build/ol.js" type="text/javascript"></script>
<script src="map_RufaiBalogun.js"></script>
<!--Reference to the OL Layer Switcher Plugin -->
<script src="https://unpkg.com/[email protected]"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/ol-layerswitcher.css" />
</head>
<body>
<!-- The Top Bar Containing the Title of the App and the name of the Author-->
<header>
<div class="flex-container"> <!--Flex Container was used to be able to access individual elements-->
<div class="title">Mobile Web Map</div>
<div class="title author">Rufai Omowunmi Balogun</div>
</header>
<!--The Map Content Container:::kept as a placeholder-->
<div id="map" class="map"></div>
<!--<div id="overviewmap"></div>-->
<!-- <select id="layer-select">
<option value="Aerial">Aerial</option>
<option value="AerialWithLabelsOnDemand" selected>Aerial with labels</option>
<option value="RoadOnDemand">Road</option>
</select>
-->
<!--The Footer Tab as a placeholder for control icons and buttons-->
<footer id="main-footer">
<p>Mobile Web Map © 2021, Some Rights Reserved: Rufai Omowunmi Balogun</p>
</footer>
</body>
</html>