includeBasemap property

bool includeBasemap

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:

The default value is true.

Implementation

bool get includeBasemap {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore
        .RT_DownloadPreplannedOfflineMapParameters_getIncludeBasemap(
            _handle, errorHandler);
  });
}
void includeBasemap=(bool value)

Implementation

set includeBasemap(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_DownloadPreplannedOfflineMapParameters_setIncludeBasemap(
        _handle, value, errorHandler);
  });
}