-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
17 lines (17 loc) · 886 Bytes
/
main.html
File metadata and controls
17 lines (17 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<title>FishingMap</title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<style type='text/css'>body{margin:0;padding:0;overflow:hidden;font-family:'Segoe UI',Helvetica,Arial,Sans-Serif}</style>
</head>
<body>
<div id='printoutPanel'></div>
<div id='myMap' style='width: 100vw; height: 100vh;'></div>
<script type='text/javascript' src='./data/data.js'></script>
<script type='text/javascript' src='polygon.js'></script>
<script type='text/javascript' src='polyline.js'></script>
<script type='text/javascript' src='heatMap.js'></script>
<script type='text/javascript' src='main.js'></script>
<script type='text/javascript' src='https://www.bing.com/api/maps/mapcontrol?key=BINGMAPSKEY&callback=loadMap' async defer></script>
</body>
</html>