diff options
Diffstat (limited to 'app')
-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 |