From 3754d094079663e12d2fd887cc4a72541c2fb902 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Tue, 26 Nov 2019 10:44:42 -0800 Subject: tbtnavi: create title cache per provider Bug-AGL: SPEC-2985 Change-Id: I5873a50da8b6099e879acbd488a5055e2ffaa162 Signed-off-by: Matt Ranostay --- app/qml/MapWindow.qml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/qml/MapWindow.qml b/app/qml/MapWindow.qml index b9c0254..f8ae21d 100644 --- a/app/qml/MapWindow.qml +++ b/app/qml/MapWindow.qml @@ -37,6 +37,10 @@ Item { name: "mapbox.access_token" value: fileOperation.getMapAccessToken() } + PluginParameter { + name: "mapbox.mapping.cache.directory" + value: fileOperation.getCachePath("mapbox") + } } Plugin { @@ -46,6 +50,10 @@ Item { name: "osm.mapping.host"; value: "https://a.tile.openstreetmap.org/" } + PluginParameter { + name: "osm.mapping.cache.directory" + value: fileOperation.getCachePath("osm") + } } // Map and route views -- cgit 1.2.3-korg