-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmap.html
25 lines (25 loc) · 1012 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://openlayers.org/en/v3.9.0/css/ol.css" type="text/css">
<link rel="stylesheet" href="css/map.css" type="text/css">
<script src="js/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="js/uomap.js" type="text/javascript"></script>
<script src="js/uomap.mapdata.js" type="text/javascript"></script>
<script src="js/version.js" type="text/javascript"></script>
<script src="http://openlayers.org/en/v3.9.0/build/ol.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
UOMap.init();
});
</script>
<title>UOMap</title>
</head>
<body>
<div id="map" class="map">
<span class="charpos"></span>
<span class="mousepos"></span>
</div>
</body>
</html>