diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-11-26 10:44:42 -0800 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2019-11-27 23:43:54 +0000 |
commit | 373728f8e6b9cb85dbeda18af5deee9960f94ba1 (patch) | |
tree | 1e2d97a66e22ab271d0a05e05944739c415c7097 | |
parent | a75fe824b9e30478f5a104cebccf15ac728c6571 (diff) |
tbtnavi: create title cache per provider
Bug-AGL: SPEC-2985
Change-Id: I5873a50da8b6099e879acbd488a5055e2ffaa162
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
(cherry picked from commit 3754d094079663e12d2fd887cc4a72541c2fb902)
-rw-r--r-- | app/qml/MapWindow.qml | 8 |
1 files changed, 8 insertions, 0 deletions
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 |