-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolveTroda.html
42 lines (31 loc) · 1 KB
/
solveTroda.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GeoOppdag</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<link rel="stylesheet" href="css/troda.css"/>
<link rel="stylesheet" href="libs/leaflet-contextmenu/leaflet.contextmenu.css"/>
<script type="text/javascript" src="js/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<script type="text/javascript" src="libs/leaflet-contextmenu/leaflet.contextmenu.js"></script>
<script type="text/javascript" src="js/troda.js"></script>
<style type="text/css">
#map {
height: 480px;
}
</style>
</head>
<body>
<script type="text/javascript">
$(document).ready(function(){
createSolverMap("map");
});
</script>
<p>Velkommen til GeoOppdag!</p>
<div id="map"></div>
<form>
<input type="submit" id="registerFind" value="register"/>
</form>
</body>
</html>