From 95575c05b669651177d2d6525be5574906d8ed24 Mon Sep 17 00:00:00 2001 From: Holger Stolzenberg Date: Sat, 16 Mar 2024 10:12:16 +0100 Subject: [PATCH] Increase geo location determination timeout --- src/app/map/geo.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/map/geo.service.ts b/src/app/map/geo.service.ts index a91b1c6..e6a8418 100644 --- a/src/app/map/geo.service.ts +++ b/src/app/map/geo.service.ts @@ -4,7 +4,7 @@ import { NotificationService } from '../notifications/notification.service'; @Injectable() export class GeoService { - private readonly options = { enableHighAccuracy: false, timeout: 5000 }; + private readonly options = { enableHighAccuracy: false, timeout: 8000 }; constructor(private readonly notificationService: NotificationService) { }