feat: add Chicago coordinates to the map
All checks were successful
Docker Build and Push / build-and-push (push) Successful in 9m38s

This commit is contained in:
2025-09-06 20:58:37 +07:00
parent 8a61a04c9b
commit 9f92593d92
2 changed files with 298 additions and 90 deletions

View File

@ -13,6 +13,14 @@ interface Server {
}
const servers: Server[] = [
{
id: "us",
name: "United States",
location: "Chicago",
subdomain: "us.tunnl.live",
coordinates: [-87.6298, 41.8781],
ping: null,
},
{
id: "sgp",
name: "Singapore",
@ -24,9 +32,9 @@ const servers: Server[] = [
{
id: "id",
name: "Indonesia",
location: "Jakarta",
location: "Bogor",
subdomain: "id.tunnl.live",
coordinates: [106.8456, -6.2088],
coordinates: [106.8456, -6.5950],
ping: null,
},
]