-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.46 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
<html>
<head>
<title>TactileHomefinder</title>
<script src="lib/osmtogeojson.js"></script>
<script src="lib/lineclip/lineclip.js"></script>
<script src="lib/lineclip/geojsonclip.js"></script>
<script src="src/util.js"></script>
<script src="src/query.js"></script>
<script src="src/speech.js"></script>
<script src="style/symbols.js"></script>
<script src="style/patterns.js"></script>
<script src="src/conversion.js"></script>
<script src="lib/canvas2svg.js"></script>
<script src="lib/kothic.js"></script>
<script src="src/render.js"></script>
<script src="style/style.js"></script>
</head>
<body>
<form action="#" onsubmit="return renderMap(); return false;">
<input type="checkbox" id="mainhighways"> Main highways <br>
<input type="checkbox" id="secondaryhighways"> Secondary highways <br>
<input type="checkbox" id="residentialhighways"> Residential highways <br>
<input type="checkbox" id="water"> Water <br>
<input type="checkbox" id="parks"> Parks <br>
<input type="checkbox" id="forest"> Forest <br>
<input type="checkbox" id="trains"> Trains <br>
<input type="checkbox" id="busstations"> Busstations <br>
<input type="checkbox" id="buildings"> Buildings <br>
<input type="text" id="area"> <br> <br>
<input type="submit" value="Submit">
</form>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width=10000 height=10000>
<g id="container" transform="scale(0.1)"></g>
</svg>
</body>
</html>