From a319e1517cd100e201187c5f7bf63646e17bc5c0 Mon Sep 17 00:00:00 2001
From: Fabio Manganiello <fabio@manganiello.tech>
Date: Wed, 26 Mar 2025 22:16:11 +0100
Subject: [PATCH] Increased default number of location points returned on
 /gpsdata.

250 -> 500
---
 frontend/src/models/LocationQuery.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frontend/src/models/LocationQuery.ts b/frontend/src/models/LocationQuery.ts
index 21d82c1..2a1b427 100644
--- a/frontend/src/models/LocationQuery.ts
+++ b/frontend/src/models/LocationQuery.ts
@@ -1,5 +1,5 @@
 class LocationQuery {
-  public limit: number = 250;
+  public limit: number = 500;
   public offset: number | null = null;
   public deviceId: string | null = null;
   public startDate: Date | null = null;