-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.php
executable file
·45 lines (41 loc) · 1.51 KB
/
map.php
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Windkraft</title>
<link rel="stylesheet" type="text/css" href="css/map.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="http://api3.geo.admin.ch/loader.js?lang=en" type="text/javascript"></script>
<!-- <script src="js/data.js"></script> -->
<!-- <script type="text/javascript" src="http://www.openlayers.org/api/OpenLayers.js"></script>-->
<!-- <script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js?v1.3.0"></script>-->
<script src="js/main.js" type="text/javascript"></script>
<!-- <script src="js/map.js" type="text/javascript"></script>-->
<script src="js/map_topo.js" type="text/javascript"></script>
</head>
<body>
<div id="map" class="map">
<div class="pseudo-filter"></div>
</div>
<div id="position"></div>
<div id="info-cont">
<div id="featureName"></div>
</div>
<div id="select">
<input type="checkbox" name="wind">
<label for="wind">Windenergieanlagen</label>
<br>
<input type="checkbox" name="wasser">
<label for="wasser">Wasserkraftanlagen</label>
<br>
<input type="checkbox" name="kern">
<label for="kern">Kernkraftwerke</label>
</div>
<div id="enter-vis">Show me some data!</div>
<div id="vis">
<div id="exit-vis"><?php echo file_get_contents('img/exit.svg') ?></div>
<div id="rest"></div>
</div>
</body>
<!--<script src="js/map.js" type="text/javascript"></script>-->
</html>