Offline Maps
With preloaded offline maps you can access whole countries or even continents completely offline without using any internet connection or consuming OTA bandwith.
Offline maps offer the same features as the map data that is available online: You can search for places, calculate routes, start guidance (only available for the Navigate Edition), and - of course - you can interact with the map in the same way as with online map data.
Note
This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. APIs may change for new releases without a deprecation process. Currently, only car routes are supported.
Why use offline maps? There can be situations when an internet connection may lag, drop - or is completely off for a longer time. Especially, while on-the-go, a stable connection may not always be available. A mobile device may also be offline due to the user's decision to save bandwidth. This means: There can be multiple reasons to use offline maps - and last but not least, offline maps will speed up the user's experience with unbeatable response times. However, in most situations - when limited bandwidth and data consumption is not an issue - accessing online map data offers more accurate and up-to-date map data. Also, some features may not be available on offline maps, for example, search results may contain not all data that is available online.
You have two ways to access map data offline:
-
Local Cache: By default, all map data is cached onto the device while using the map. This storage is persisted between sessions, but the storage size is limited and old cache data may be replaced with newer map data. Note: You can change the default cache path and the size with the SDKOptions
you can pass into the SDKNativeEngine
when you initialize the HERE SDK programmatically. Cached map data is stored in the map cache storage.
-
Offline Maps: With offline maps you can download entire regions or even continents to preload their map data for offline use - including places, routing and other data. A dedicated MapDownloader
enables you to get and to maintain this data. Offline maps data is persisted between sessions and the data will not be deleted unless the user decides so. Offline maps are stored in the persistent map storage.
Offline maps work for all map schemes that are vector based. Satellite based map schemes are not part of the downloaded map data.
Good to know:
While interacting with a map view, the HERE SDK will first check if downloaded offline map data is available and show it. If no offline maps are available for the current target, the HERE SDK will download online map data and cache it. If no online connection is available, it will try to find data in the map data cache. If even that fails, the map will be shown with less details or even no details.
When the HERE SDK uses backend services such as for search and routing, you need to use dedicated offline engines to access cached or predownloaded offline map data. Use the OfflineSearchEngine
and OfflineRoutingEngine
to access map data offline. Their counterparts, the SearchEngine
and RoutingEngine
, will only provide results when an online connection is available - otherwise you will get an error. Therefore, you need to decide which engine to use.
Overview
Downloading and using offline maps can be achieved in two simple steps.
1) Download a list of Region
objects. Optionally, this list can be localized with local region names. Once you have this list, you can pick the RegionId
you want to download and pass it as download request to the MapDownloader
.
2) Use the MapDownloader
to download a single Region
or a list of regions. You can also download several regions in parallel. Show the download progress to the user by setting a DownloadRegionsStatusListener
.
Once the download has completed, the map is ready to be used. If a device is offline, it will automatically show the downloaded region when the camera's target is pointed to that region.
If a download failed, the HERE SDK will still be in a fully operable state. Just try to download again, until the progress has reached 100% and the status finally indicated that the operation has completed. Note that, currently, map data can only be deleted manually from the device's storage.
Since map data for regions, countries or whole continents can contain several hundreds of megabytes, a download may take a while - depending on factors such as available bandwidth. A download may also fail, when a connection gets timed out and cannot recover. For best user experience, it is recommended to allow the user to cancel ongoing operations and to watch the progress until a map download succeeds.
Note
To get a quick overview of how all of this works, you can take a look at the offline_maps_app class. It contains all code snippets shown below and it is part of the offline_maps_app example app you can find on GitHub.
Create a MapDownloader Instance
You can create the MapDownloader
once per SDKNativeEngine
:
SDKNativeEngine sdkNativeEngine = SDKNativeEngine.sharedInstance;
if (sdkNativeEngine == null) {
throw ("SDKNativeEngine not initialized.");
}
_mapDownloader = MapDownloader.fromSdkEngine(sdkNativeEngine);
Usually, the SDKNativeEngine
is automatically initialized when you start the app to show a MapView
. Therefore, you can access it's instance at runtime and obtain the MapDownloader
from it.
By default, the downloaded map data will be stored to a default location:
String storagePath = sdkNativeEngine.options.cachePath;
_showDialog("This example allows to download the region Switzerland.", "Storage path: $storagePath");
As stated in the comment, you can change that storage location, if you wish so - but then you need to create a new SDKNativeEngine
instance as shown in the Key Concepts section and set the new cache path together with your credentials as part of the SDKOptions
. Note that the storage path is unique for your credentials key.
Download a List of Regions
Each downloadable Region
is identified by a unique RegionId
. In order to know, which regions are available and which RegionID
belongs to which Region
, you need to download a list of all available offline maps. This contains regions from the entire world.
Each Region
can contain multiple children and each child represents a subset of its parent Region
- when you download the parent, then the child regions are automatically included. If you are interested only in smaller portions of an area you can traverse the child regions. Usually, the top-level regions represent continents with countries as children. For the sake of simplicity, below we only look for downloadable countries and ignore any children of children and their children (and so on).
The code below downloads the list of downloadable regions and stores the available Region
elements in a list for later use:
_mapDownloader.getDownloadableRegionsWithLanguageCode(LanguageCode.deDe,
(MapLoaderError mapLoaderError, List<Region> list) {
if (mapLoaderError != null) {
_showDialog("Error", "Downloadable regions error: $mapLoaderError");
return;
}
_downloadableRegions = list;
for (Region region in _downloadableRegions) {
print("RegionsCallback: " + region.name);
List<Region> childRegions = region.childRegions;
if (childRegions == null) {
continue;
}
for (Region childRegion in childRegions) {
var sizeOnDiskInMB = childRegion.sizeOnDiskInBytes / (1024 * 1024);
String logMessage = "Child region: " +
childRegion.name +
", ID: " +
childRegion.regionId.id.toString() +
", Size: " +
sizeOnDiskInMB.toString() +
" MB";
print("RegionsCallback: " + logMessage);
}
}
var listLenght = _downloadableRegions.length;
_showDialog("Contintents found: $listLenght", "Each continent contains various countries. See log for details.");
});
The response contains either an error or a result: MapLoaderError
and List<Region>
can never be null at the same time - or non-null at the same time.
Each region can contain child regions. For example, Europe contains Germany, France and Switzerland - and many more child regions. The sizeOnDiskInBytes
parameter tells you how much space the downloaded map will occupy on the device's file system when it's uncompressed after download has completed. It makes sense to show this to the user before starting the download - as the available space on a device may be limited.
Screenshot: Showing an example how downloadable maps could be indicated to users.
Download a Region
Once you know the RegionId
, you can use it to start downloading the map data. Each Region
instance contains a localized name
and other data, such as the size of the downloaded map. When the map data is downloaded, all data is compressed and will be unpacked automatically onto the device's disk once the download is complete.
Below we search the downloaded list of regions to find the Region
element for Switzerland. Note that we have requested the region list to be localized in German in the step above:
Region _findRegion(String localizedRegionName) {
Region downloadableRegion = null;
for (Region region in _downloadableRegions) {
if (region.name == localizedRegionName) {
downloadableRegion = region;
break;
}
List<Region> childRegions = region.childRegions;
if (childRegions == null) {
continue;
}
for (Region childRegion in childRegions) {
if (childRegion.name == localizedRegionName) {
downloadableRegion = childRegion;
break;
}
}
}
return downloadableRegion;
}
Once we know the Region
, we can use it's RegionId
to start the download. We pass the unique ID into a list, so we can download multiple regions with the same request. Here, we download only one region:
String swizNameInGerman = "Schweiz";
Region region = _findRegion(swizNameInGerman);
if (region == null) {
_showDialog("Error", "Error: The Swiz region was not found. Click 'Get Regions' first.");
return;
}
List<RegionId> regionIDs = [region.regionId];
MapDownloaderTask mapDownloaderTask = _mapDownloader.downloadRegions(
regionIDs,
DownloadRegionsStatusListener.fromLambdas(
lambda_onDownloadRegionsComplete: (MapLoaderError mapLoaderError, List<RegionId> list) {
if (mapLoaderError != null) {
_showDialog("Error", "Download regions completion error: $mapLoaderError");
return;
}
String message = "Download Regions Status: Completed 100% for Switzerland! ID: " + list.first.id.toString();
print(message);
}, lambda_onProgress: (RegionId regionId, int percentage) {
String message =
"Download of Switzerland. ID: " + regionId.id.toString() + ". Progress: " + percentage.toString() + "%.";
print(message);
}, lambda_onPause: (MapLoaderError mapLoaderError) {
if (mapLoaderError == null) {
_showDialog("Info", "The download was paused by the user calling mapDownloaderTask.pause().");
} else {
_showDialog("Error", "Download regions onPause error. The task tried to often to retry the download: $mapLoaderError");
}
}, lambda_onResume: () {
_showDialog("Info", "A previously paused download has been resumed.");
}));
_mapDownloaderTasks.add(mapDownloaderTask);
The DownloadRegionsStatusListener
provides four events. The second one tells us the progress while the download is ongoing, while the first one notifies once the download has completed. Note that the download can also complete with a MapLoaderError
, so it's worth to check if something went wrong.
The response for lambda_onDownloadRegionsComplete()
contains either an error or a result: MapLoaderError
and List<RegionId>
can never be null at the same time - or non-null at the same time.
The pause event notfies when a download was paused by the user or the task itself. Internally, the HERE SDK will retry to download a region when it was interrupted, ie. due to a bad network connection. If this happens too often, the MapLoaderError
for lambda_onPause()
is populated and the download pauses. A paused MapDownloaderTask
can only be resumed by the user, which will be also indicated by the related event. Especially for larger regions it may be convenient to pause a download until the connection gets better, for example. When resumed, the download will continue at the progress where it stopped and no already downloaded map data will be lost. Note that calling downloadRegions()
for a paused region will have the same effect as calling resume()
on the original task and the progress will continue where it left off.
After kicking off the download, we get an immediate return value to be able to cancel the ongoing asynchronous download operation. Above, we store the MapDownloaderTask
into a list, as a user might trigger the above code multiple times.
To cancel all ongoing downloads, you can use the following code snippet:
for (MapDownloaderTask mapDownloaderTask in _mapDownloaderTasks) {
mapDownloaderTask.cancel();
}
int taskLength = _mapDownloaderTasks.length;
_showDialog("Note", "Cancelled $taskLength download tasks in list.");
_mapDownloaderTasks.clear();
Note that a MapDownloaderTask
that was cancelled cannot be resumed again, but you can start a fresh download request again.
A usage example is available on GitHub as part of the offline_maps_app example app.