Files
eve-signaler/public/Domain.json
gpt-engineer-app[bot] 81bfc9f45a Fix: Implement connections and region styling
-   Added "connectsTo" to JSON data for connections.
-   Updated region nodes to be rounded oblongs.
-   Updated the GalaxyMap and RegionMap to render connections.
2025-06-13 23:48:04 +00:00

25 lines
397 B
JSON

[
{
"solarSystemName": "Jita",
"x": "200",
"y": "150",
"security": 0.9,
"connectsTo": ["Dodixie", "Rens"]
},
{
"solarSystemName": "Dodixie",
"x": "350",
"y": "280",
"security": 0.7,
"connectsTo": ["Jita", "Rens"]
},
{
"solarSystemName": "Rens",
"x": "150",
"y": "400",
"security": 0.6,
"connectsTo": ["Jita", "Dodixie"]
}
]