-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap.html
44 lines (44 loc) · 1.87 KB
/
map.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
<!doctype html>
<html lang="en">
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" href="lib/ol3/ol.css" type="text/css">
<link rel="stylesheet" href="css/map.css" type="text/css">
<title>Sea map with OpenLayers 3</title>
<script src='http://code.jquery.com/jquery-1.11.3.js'></script>
<script src="lib/filesaver/FileSaver.min.js" type="text/javascript"></script>
<script src="lib/ol3/ol-debug.js" type="text/javascript"></script>
<script src='http://code.jquery.com/jquery-1.11.1.js'></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src='js/main.js'></script>
<script src='js/utils.js'></script>
<script src='js/layer_openstreetmap.js'></script>
<script src='js/layer_bing_aerial.js'></script>
<script src='js/layer_stamen.js'></script>
<script src='js/layer_seamarks.js'></script>
<script src='js/layer_weather.js'></script>
<script src='js/layer_water_levels.js'></script>
<script src='js/control_layer_selector.js'></script>
<script src='js/control_mouse_position.js'></script>
<script src='js/control_search.js'></script>
<script src='js/control_zoom_level.js'></script>
<script src='js/tool_permalink.js'></script>
<script src='js/tool_trip_planner.js'></script>
<script src='js/tool_map_download.js'></script>
</head>
<body onload='onc.init()'>
<div id="map">
<div id="popup"></div>
<div id="sidepanel">
<div id="sidebar"></div>
<div id="menubuttons">
<div id="showlayerselector"></div>
<div id="showsearch"></div>
<div id="showtripplanner"></div>
<div id="showpermalink"></div>
<div id="showmapdownload"></div>
</div>
</div>
</div>
</body>
</html>