-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.79 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.79 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://openlayers.org/en/v3.19.1/css/ol.css" type="text/css"/>
<link rel="stylesheet" href="css/ol3-layerswitcher.css" type="text/css"/>
<link rel="stylesheet" href="css/main.css" type="text/css"/>
<link rel="stylesheet" href="css/mediawiki.css"/>
<link rel="stylesheet" href="css/measurement.css"/>
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL"></script>
<script src="https://openlayers.org/en/v3.19.1/build/ol.js" type="text/javascript"></script>
<script src="js/ol3-layerswitcher.js" type="text/javascript"></script>
<script src="js/measurement.js" type="text/javascript"></script>
<script src="js/flag.js" type="text/javascript"></script>
<title>SHA2017 Map</title>
</head>
<body>
<div id="map" class="map">
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
</div>
<div id="measurement-tool" class="ol-control measurement-tool">
<button class="icon" title="Measurements" id="measurement-button"></button>
<div class="panel">
<form class="form-inline" >
<h2>Measurement tool</h2>
<label><input type="checkbox" id="measurement-enable"> Enable</label><br>
<select id="measurement-type">
<option value="length">Length</option>
<option value="area">Area</option>
</select>
</form>
</div>
</div>
</div>
<script type="text/javascript" src="js/map.js"></script>
</body>
</html>