includeBasemap property
Indicates whether or not a basemap will be included in the offline map.
If you do not want a basemap in the offline map then set this property to FALSE.
After loading the offline map, your application can programmatically insert a basemap into the map. Note that, a programmatically inserted basemap will not be persisted in the map. If you want a basemap in the offline map then set this property to TRUE. You can choose to either:
- Download and use the basemap that is part of the PreplannedMapArea. This is the default.
- Use the local basemap on the device by setting the DownloadPreplannedOfflineMapParameters.referenceBasemapDirectory
The default value is true.
Implementation
bool get includeBasemap {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore
.RT_DownloadPreplannedOfflineMapParameters_getIncludeBasemap(
_handle, errorHandler);
});
}
Implementation
set includeBasemap(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_DownloadPreplannedOfflineMapParameters_setIncludeBasemap(
_handle, value, errorHandler);
});
}