1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-29 05:33:05 +01:00

Fix for better GPS accuracy

This commit is contained in:
norbert-walter
2025-11-26 19:33:14 +01:00
parent f8378c3a2b
commit 0972f12b9e

View File

@@ -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