-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (63 loc) · 2.13 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, minimal-ui">
<title>cartographe</title>
<link href="style.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
</head>
<body>
<div id="map"></div>
<div id="input">
<textarea id="textarea-graph" placeholder="graph" rows="20" cols="55">
1829061610␟48.8260051␟2.3474783
21658501␟48.8279975␟2.3518307
1829061667␟48.8265177␟2.3501273
1829061607␟48.8278868␟2.347252
3761637486-3761637489␟48.827538␟2.348701
2576426850-2576426853-3761637482␟48.82743␟2.348672
92192237␟48.8275872␟2.3490245
1829061614␟48.8273732␟2.3487375
1829061602␟48.8275089␟2.3484223
2268836829␟48.8276001␟2.3486802
2268836829␟3761637486-3761637489
1829061614␟2576426850-2576426853-3761637482
3761637486-3761637489␟92192237
2576426850-2576426853-3761637482␟3761637486-3761637489
1829061602␟3761637486-3761637489
1829061614␟1829061667
1829061602␟1829061607
1829061602␟2576426850-2576426853-3761637482
1829061614␟92192237
1829061610␟1829061614
21658501␟92192237</textarea>
<br/>
<div id="info">
<b>node_id␟latitude␟longitude //represents a node
node_id␟node_id //represents a link between two nodes
default separator is "␟" unit separator ASCII 31
<br>
⚠ distances can be approximative ⚠
</b>
</div>
<br/>
<label for="separator">Separator:</label>
<input id="separator" value="␟" size="1" minlength="1" maxlength="1">
<input type="checkbox" id="nodes" checked>
<label for="nodes">Nodes</label>
<input type="checkbox" id="links" checked>
<label for="links">Links</label>
<br/>
<button id="btn-graph" type="button">DISPLAY</button>
</div>
</body>
<footer>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<script src="code.js"></script>
</footer>
</html>