-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.83 KB
/
index.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
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<!-- Originally from http://www.imabot.com/alphamapper/aw/ -->
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>AlphaMapper - AlphaWorld</title>
<link href="css/leaflet.css" rel="stylesheet" type="text/css"/>
<link href="css/awmap.css" rel="stylesheet" type="text/css"/>
</head>
<body onload="main()">
<form id="navBar">
<input type="text" placeholder="Is Javascript enabled?"
pattern="\d{1,5}(\.\d{1,5})?[NSns]\s*(\d{1,5}(\.\d{1,5})?[WEwe])?"/>
</form>
<div id="map"></div>
<!-- Template for the information control -->
<div id="infoControl">
<label>Pointer location</label>
<value>0N 0W</value>
</div>
<!-- Template for the teleport control -->
<button id="teleportControl"
title="Teleport to map's current center coordinates in Active Worlds">
🌐
</button>
</body>
<scripts>
<!-- Vendor scripts -->
<script src="js/leaflet/leaflet-src.js" type="text/javascript"></script>
<script src="js/leaflet/leaflet.tilelayer.fallback-src.js" type="text/javascript"></script>
<!-- AlphaMapper scripts -->
<script src="js/awmap-config.js" type="text/javascript"></script>
<script src="js/awmap-coordinates.js" type="text/javascript"></script>
<script src="js/awmap-infocontrol.js" type="text/javascript"></script>
<script src="js/awmap-layer.js" type="text/javascript"></script>
<script src="js/awmap-navbox.js" type="text/javascript"></script>
<script src="js/awmap-teleportcontrol.js" type="text/javascript"></script>
<script src="js/awmap.js" type="text/javascript"></script>
</scripts>
</html>