-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathexample.html
More file actions
24 lines (24 loc) · 855 Bytes
/
example.html
File metadata and controls
24 lines (24 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>theHunter Map</title>
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { width: 100%; height: 100%; }
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="js/huntermap-const.js"></script>
<script type="text/javascript" src="js/huntermap-locations.js"></script>
<script type="text/javascript" src="js/huntermap.js"></script>
<script type="text/javascript">
var map;
function initialize() {
HMap.map.init(document.getElementById("map_canvas"));
}
</script>
</head>
<body onload="initialize()" style="margin: 0; padding: 0">
<div id="map_canvas">map div</div>
</body>
</html>