-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (70 loc) · 2.34 KB
/
index.html
File metadata and controls
74 lines (70 loc) · 2.34 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en-US">
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href="./style.css">
<!-- third party javascript -->
<script src="./js/jquery-1.10.2.js"></script>
<script src="./js/jquery.mousewheel.js"></script>
<script src="./js/jquery.form.js"></script>
<!-- <script src="./js/jquery-ui-1.10.3.custom.js"></script> -->
<!-- // <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> -->
<script src="./js/d3.js"></script>
<script src="./js/drawMap.js"></script>
</head>
<body>
<svg id="mapSVG">
<g id="mapImageGroup"></g>
<g id="featureGroup"></g>
</svg>
<div id="mapControls" class="overlayItem">
<!-- <div id="reloaddata" class="links">reload map</div>
Zoom: -->
<div id="updateData" class="links">refresh</div>
<button id="zoomOut">
-
</button>
<button id="zoomIn">
+
</button>
</div>
<div id="coordDisplay" class="overlayItem">x: z:</div>
<div id="upperRightControls">
<div id="layerBox" class="overlayItem">
<div id="layerHeader" class="links"><right>Map Contents</right></div>
<div id="layerList"></div>
</div>
<div id="editBox" class="overlayItem">
<div id="editHeader" class="links"><right>Add/Edit Data</right></div>
<div id="editList">
<span id="addFeature" class="links">Feature</span>,
<span id="addCategory" class="links">Category</span>,
<span id="addMap" class="links">Map</span>
</div>
<div id="editPrompt">
<span id="namePromptInstructions"></span>
<form id="namePromptForm" method="get">
<input type="text" name="page_name" value="" class="formInput" size="25" />
<input type="hidden" name="title" value="Special:FormStart" />
<input type="hidden" name="form" />
<input type="submit" value="Create or edit" />
</form>
<div id="editHeaderAndForm">
<span id="editFormHeader"></span>
<a href="#" class="hideEditHeaderAndForm">close</a>
<div id="editFormArea"></div>
</div>
</div>
</div>
</div>
<div id="mouseoverBox" class="overlayItem"></div>
<div id="boundFeatureInfo" class="overlayItem">
<span class="featureInfoTitle"></span>
<!-- href set by js -->
<a target="_blank" class="featureInfoOpen">open</a>
<a href="#" class="featureInfoEdit">edit</a>
<a href="#" class="featureInfoClose">close</a>
<div class="featureInfoBody"></div>
</div>
</body>
</html>