-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
68 lines (57 loc) · 2.41 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="icon" type="image/x-icon" href="https://unsorry.net/assets-date/images/favicon.png">
<title>Label objects on Earth's Surface</title>
</head>
<body>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.3/leaflet.draw.css" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
</body>
<body>
<!--The div element for the map -->
<div id="div1">
<iframe
src=""
id="div1GoogleMap"
width=100% height=100% style="border:0;" allowfullscreen="" loading="lazy"></iframe>
<script src="./onlineMaps/googleMap.js"> </script>
</div>
<div id="div2">
<iframe
src=""
id="div2WayBackMap"
width=100% height=100% style="border:0;"></iframe>
<script src="./onlineMaps/esriWayBackMap.js"> </script>
</div>
<div id="div3">
<div id='map'></div>
</div>
<div id="div4">
<div id="forms">
<iframe
src="./infoForm/informationForm.html"
width=100% height=100% style="border:0;"></iframe>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet.draw/1.0.3/leaflet.draw.js"></script>
<script src="./js/proj4.js"></script>
<!-- <script src="./js/mapDraw.js"></script>-->
<script src="./js/proj4leaflet.js"></script>
<script src='https://unpkg.com/[email protected]/dist/leaflet.imageoverlay.arrugator.js'>
</script>
<script src="./js/index.js"></script>
</body>
</html>