prishasinghai commited on
Commit
32ce94b
Β·
verified Β·
1 Parent(s): 66b4057

Update index.html

Browse files
Files changed (1) hide show
  1. 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(-1.5, 0), type: "gs", label: `Hamilton (${hamilton})` },
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(-2.5, 1.5), type: "gs", label: `Village (${village})` },
531
  "Club GS": { pos: toCanvas(1.5, -3), type: "gs", label: `Club (${club})` },
532
 
533
  // Food Stalls & Arenas
534
- "Main Fan Zone": { pos: toCanvas(-0.2, 0.8), type: "food", label: "πŸ” Main Fan Zone" },
535
  "Becketts Food": { pos: toCanvas(1.8, 2.8), type: "food", label: "🌭 Becketts Food" },
536
- "Village Plaza": { pos: toCanvas(-1.8, 2.2), type: "food", label: "πŸ• Village Plaza" },
537
  "Club Eats": { pos: toCanvas(0.2, -2.2), type: "food", label: "🍦 Club Eats" },
538
 
539
  // Intermediate Junction Hubs
540
- "Arena Crossroad": { pos: toCanvas(-1.2, 0.8), type: "hub", label: "πŸ“ Arena Hub" },
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.5, 0), type: "gate", label: "πŸšͺ Main Gate 1" },
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.0, 2.8), type: "gate", label: "πŸšͺ West Gate 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
  // -------------------------------------------------------------