Update index.html
Browse files- index.html +8 -7
index.html
CHANGED
|
@@ -521,31 +521,32 @@
|
|
| 521 |
|
| 522 |
// -------------------------------------------------------------
|
| 523 |
// B. DEFINE MAP NODES (Grandstands, Food, Hubs, Gates)
|
|
|
|
| 524 |
// -------------------------------------------------------------
|
| 525 |
const nodes = {
|
| 526 |
// Grandstands
|
| 527 |
-
"Hamilton GS": { pos: toCanvas(-
|
| 528 |
"Becketts GS": { pos: toCanvas(1, 3.5), type: "gs", label: `Becketts (${becketts})` },
|
| 529 |
"Stowe GS": { pos: toCanvas(3.5, 2), type: "gs", label: `Stowe (${stowe})` },
|
| 530 |
-
"Village GS": { pos: toCanvas(-
|
| 531 |
"Club GS": { pos: toCanvas(1.5, -3), type: "gs", label: `Club (${club})` },
|
| 532 |
|
| 533 |
// Food Stalls & Arenas
|
| 534 |
-
"Main Fan Zone": { pos: toCanvas(-
|
| 535 |
"Becketts Food": { pos: toCanvas(1.8, 2.8), type: "food", label: "π Becketts Food" },
|
| 536 |
-
"Village Plaza": { pos: toCanvas(-
|
| 537 |
"Club Eats": { pos: toCanvas(0.2, -2.2), type: "food", label: "π¦ Club Eats" },
|
| 538 |
|
| 539 |
// Intermediate Junction Hubs
|
| 540 |
-
"Arena Crossroad": { pos: toCanvas(-
|
| 541 |
"Becketts Interchange": { pos: toCanvas(0.5, 2.2), type: "hub", label: "π Becketts Hub" },
|
| 542 |
"South Bypass": { pos: toCanvas(-0.8, -1.5), type: "hub", label: "π South Hub" },
|
| 543 |
|
| 544 |
// Gates
|
| 545 |
-
"Main Gate 1": { pos: toCanvas(-3.
|
| 546 |
"South Gate 2": { pos: toCanvas(1, -4.2), type: "gate", label: "πͺ South Gate 2" },
|
| 547 |
"East Gate 3": { pos: toCanvas(4.5, -1), type: "gate", label: "πͺ East Gate 3" },
|
| 548 |
-
"West Gate 4": { pos: toCanvas(-4.
|
| 549 |
};
|
| 550 |
|
| 551 |
// -------------------------------------------------------------
|
|
|
|
| 521 |
|
| 522 |
// -------------------------------------------------------------
|
| 523 |
// B. DEFINE MAP NODES (Grandstands, Food, Hubs, Gates)
|
| 524 |
+
// Coordinates adjusted outward to clear the track loop entirely
|
| 525 |
// -------------------------------------------------------------
|
| 526 |
const nodes = {
|
| 527 |
// Grandstands
|
| 528 |
+
"Hamilton GS": { pos: toCanvas(-2.2, -0.5), type: "gs", label: `Hamilton (${hamilton})` },
|
| 529 |
"Becketts GS": { pos: toCanvas(1, 3.5), type: "gs", label: `Becketts (${becketts})` },
|
| 530 |
"Stowe GS": { pos: toCanvas(3.5, 2), type: "gs", label: `Stowe (${stowe})` },
|
| 531 |
+
"Village GS": { pos: toCanvas(-3.2, 1.8), type: "gs", label: `Village (${village})` },
|
| 532 |
"Club GS": { pos: toCanvas(1.5, -3), type: "gs", label: `Club (${club})` },
|
| 533 |
|
| 534 |
// Food Stalls & Arenas
|
| 535 |
+
"Main Fan Zone": { pos: toCanvas(-2.2, 0.8), type: "food", label: "π Main Fan Zone" },
|
| 536 |
"Becketts Food": { pos: toCanvas(1.8, 2.8), type: "food", label: "π Becketts Food" },
|
| 537 |
+
"Village Plaza": { pos: toCanvas(-2.8, 2.8), type: "food", label: "π Village Plaza" },
|
| 538 |
"Club Eats": { pos: toCanvas(0.2, -2.2), type: "food", label: "π¦ Club Eats" },
|
| 539 |
|
| 540 |
// Intermediate Junction Hubs
|
| 541 |
+
"Arena Crossroad": { pos: toCanvas(-2.8, 0.2), type: "hub", label: "π Arena Hub" },
|
| 542 |
"Becketts Interchange": { pos: toCanvas(0.5, 2.2), type: "hub", label: "π Becketts Hub" },
|
| 543 |
"South Bypass": { pos: toCanvas(-0.8, -1.5), type: "hub", label: "π South Hub" },
|
| 544 |
|
| 545 |
// Gates
|
| 546 |
+
"Main Gate 1": { pos: toCanvas(-3.8, -0.5), type: "gate", label: "πͺ Main Gate 1" },
|
| 547 |
"South Gate 2": { pos: toCanvas(1, -4.2), type: "gate", label: "πͺ South Gate 2" },
|
| 548 |
"East Gate 3": { pos: toCanvas(4.5, -1), type: "gate", label: "πͺ East Gate 3" },
|
| 549 |
+
"West Gate 4": { pos: toCanvas(-4.2, 2.8), type: "gate", label: "πͺ West Gate 4" }
|
| 550 |
};
|
| 551 |
|
| 552 |
// -------------------------------------------------------------
|