diff --git a/src/components/ui/DynamicMapContainer.tsx b/src/components/ui/DynamicMapContainer.tsx index 9bc988a..8e3da85 100644 --- a/src/components/ui/DynamicMapContainer.tsx +++ b/src/components/ui/DynamicMapContainer.tsx @@ -25,7 +25,7 @@ interface RawNode { function DynamicMapContainer() { const [loading, setLoading] = useState(true); const [nodes, setNodes] = useState([]); - const API_URL = "https://gridproxy.grid.tf/nodes?healthy=true"; + const API_URL = "https://gridproxy.grid.tf/nodes?healthy=true&size=99999"; useEffect(() => { async function fetchNodeData() { diff --git a/src/components/ui/world-map.tsx b/src/components/ui/world-map.tsx index bb44360..41ce284 100644 --- a/src/components/ui/world-map.tsx +++ b/src/components/ui/world-map.tsx @@ -34,7 +34,7 @@ export default function WorldMap({ // Projects lat/lng to the SVG's 800x400 viewBox coordinates const projectPoint = (lat: number, lng: number) => { const x = (lng + 180) * (800 / 360); - const y = (90 - lat) * (400 / 180); + const y = (90 - lat) * (400 / 180) + 45; return { x, y }; };