toDownloadable abstract method

DownloadableRegion<List<Object>> toDownloadable(
  1. int minZoom,
  2. int maxZoom,
  3. TileLayer options, {
  4. int parallelThreads = 10,
  5. bool preventRedownload = false,
  6. bool seaTileRemoval = false,
  7. int start = 0,
  8. int? end,
  9. Crs crs = const Epsg3857(),
  10. void errorHandler(
    1. Object?
    )?,
})

Generate the DownloadableRegion ready for bulk downloading

For more information see DownloadableRegion's documentation.

Implementation

DownloadableRegion toDownloadable(
  int minZoom,
  int maxZoom,
  TileLayer options, {
  int parallelThreads = 10,
  bool preventRedownload = false,
  bool seaTileRemoval = false,
  int start = 0,
  int? end,
  Crs crs = const Epsg3857(),
  void Function(Object?)? errorHandler,
});