From 0972f12b9e7b55cc97c09e4bb9bb8313470d0bc2 Mon Sep 17 00:00:00 2001 From: norbert-walter Date: Wed, 26 Nov 2025 19:33:14 +0100 Subject: [PATCH] Fix for better GPS accuracy --- lib/obp60task/PageNavigation.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/obp60task/PageNavigation.cpp b/lib/obp60task/PageNavigation.cpp index d493a29..61fae93 100644 --- a/lib/obp60task/PageNavigation.cpp +++ b/lib/obp60task/PageNavigation.cpp @@ -194,10 +194,10 @@ public: String url = String("http://") + server + ":" + port + // OBP Server String("/get_image_json?") + // Service: Output B&W picture as JSON (Base64 + gzip) "zoom=" + zoom + // Zoom level: 15 - "&lat=" + latitude + // Latitude - "&lon=" + longitude + // Longitude + "&lat=" + String(latitude, 6) + // Latitude + "&lon=" + String(longitude, 6) + // Longitude "&mrot=" + int(courseOverGround) + // Rotation angle navigation map - "&mtype=5" + // Open Topo Map + "&mtype=1" + // Open Street Map "&dtype=4" + // Dithering type: Atkinson dithering "&width=400" + // With navigation map "&height=250" + // Height navigation map