-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>oski646/sectors-generator</title>
</head>
<body>
<canvas id="sectors" width="800" height="800" style="float: left;"></canvas>
<div id="coordinates"></div>
<div id="sector-info"></div>
<div id="nested-sectors"></div>
<script src="sectors.js"></script>
<script src="data.js"></script>
<script>
const config = {
canvasID: "sectors",
mapBorder: 3000,
highlightColor: 'rgba(255, 255, 255, 0.25)',
defaultOffset: {
text: {
x: -7,
y: 5
},
tps: {
x: -27,
y: 18
}
}
}
const setCoordinatesText = (coordinates) => {
document.getElementById("coordinates").innerText =
`X: ${Math.round(coordinates.x)} | Z: ${Math.round(coordinates.y)}`
}
const setSectorInfoText = (sector) => {
const sectorInfo = []
if (sector.name) sectorInfo.push(`Sector: ${sector.name}`)
if (sector.tps) sectorInfo.push(`TPS: ${sector.tps}`)
if (sector.online) sectorInfo.push(`Online: ${sector.online}`)
document.getElementById("sector-info").innerText = sectorInfo.join(' | ')
}
initSectors(sectors, (event, sector, coordinates) => {
if (coordinates) setCoordinatesText(coordinates)
if (sector) setSectorInfoText(sector)
}, config);
</script>
</body>
</html>