summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Techet <techet@gmail.com>2014-08-01 00:38:59 +0200
committerJiří Techet <techet@gmail.com>2014-08-01 00:41:12 +0200
commit1496aaa381392897c3536ffde1271f19eb0c4447 (patch)
tree303b2ea752b7e5fd65527e78cbf0fee27195fe16
parent57b45631f5dcb36248982bd292a6584bcf23e1fd (diff)
downloadlibchamplain-1496aaa381392897c3536ffde1271f19eb0c4447.tar.gz
For privacy reasons, use https for map sources which support it
-rw-r--r--champlain/champlain-map-source-factory.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/champlain/champlain-map-source-factory.c b/champlain/champlain-map-source-factory.c
index 0fc65ac..3ffcba3 100644
--- a/champlain/champlain-map-source-factory.c
+++ b/champlain/champlain-map-source-factory.c
@@ -156,7 +156,7 @@ champlain_map_source_factory_init (ChamplainMapSourceFactory *factory)
18,
256,
CHAMPLAIN_MAP_PROJECTION_MERCATOR,
- "http://tile.openstreetmap.org/#Z#/#X#/#Y#.png",
+ "https://tile.openstreetmap.org/#Z#/#X#/#Y#.png",
champlain_map_source_new_generic,
NULL);
champlain_map_source_factory_register (factory, desc);
@@ -170,7 +170,7 @@ champlain_map_source_factory_init (ChamplainMapSourceFactory *factory)
17,
256,
CHAMPLAIN_MAP_PROJECTION_MERCATOR,
- "http://otile1.mqcdn.com/tiles/1.0.0/osm/#Z#/#X#/#Y#.png",
+ "https://otile1.mqcdn.com/tiles/1.0.0/osm/#Z#/#X#/#Y#.png",
champlain_map_source_new_generic,
NULL);
champlain_map_source_factory_register (factory, desc);
@@ -184,7 +184,7 @@ champlain_map_source_factory_init (ChamplainMapSourceFactory *factory)
18,
256,
CHAMPLAIN_MAP_PROJECTION_MERCATOR,
- "http://otile1.mqcdn.com/tiles/1.0.0/sat/#Z#/#X#/#Y#.jpg",
+ "https://otile1.mqcdn.com/tiles/1.0.0/sat/#Z#/#X#/#Y#.jpg",
champlain_map_source_new_generic,
NULL);
champlain_map_source_factory_register (factory, desc);