From fcdfc3702aa06f6ae2e63ea9e7bbc3844d05df96 Mon Sep 17 00:00:00 2001 From: Cellie Date: Mon, 9 Jun 2025 20:58:17 +0200 Subject: [PATCH] Improve fetch times massively by changing from https to http --- src/TileProvider.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/TileProvider.hpp b/src/TileProvider.hpp index 6f23c41..46752a6 100644 --- a/src/TileProvider.hpp +++ b/src/TileProvider.hpp @@ -38,7 +38,7 @@ struct TileProvider const TileProvider osmStandard = { "OSM Standard", - "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "http://tile.openstreetmap.org/{z}/{x}/{y}.png", "© OpenStreetMap contributors", false, "", @@ -46,7 +46,7 @@ const TileProvider osmStandard = { const TileProvider ThunderTransportDark256 = { "Thunderforest Transport Dark 256px", - "https://tile.thunderforest.com/transport-dark/{z}/{x}/{y}.png?apikey={apiKey}", + "http://tile.thunderforest.com/transport-dark/{z}/{x}/{y}.png?apikey={apiKey}", "© Thunderforest, OpenStreetMap contributors", true, "YOUR_THUNDERFOREST_KEY", @@ -54,7 +54,7 @@ const TileProvider ThunderTransportDark256 = { const TileProvider ThunderForestCycle512 = { "Thunderforest Cycle 512px", - "https://tile.thunderforest.com/cycle/{z}/{x}/{y}@2x.png?apikey={apiKey}", + "http://tile.thunderforest.com/cycle/{z}/{x}/{y}@2x.png?apikey={apiKey}", "© Thunderforest, OpenStreetMap contributors", true, "YOUR_THUNDERFOREST_KEY", @@ -62,7 +62,7 @@ const TileProvider ThunderForestCycle512 = { const TileProvider ThunderForestCycle256 = { "Thunderforest Cycle 256px", - "https://tile.thunderforest.com/cycle/{z}/{x}/{y}.png?apikey={apiKey}", + "http://tile.thunderforest.com/cycle/{z}/{x}/{y}.png?apikey={apiKey}", "© Thunderforest, OpenStreetMap contributors", true, "YOUR_THUNDERFOREST_KEY",