toDownloadable method

  1. @override
DownloadableRegion<RectangleRegion> toDownloadable({
  1. required int minZoom,
  2. required int maxZoom,
  3. required TileLayer options,
  4. int start = 1,
  5. int? end,
  6. Crs crs = const Epsg3857(),
})
override

Generate the DownloadableRegion ready for bulk downloading

For more information see DownloadableRegion's documentation.

Implementation

@override
DownloadableRegion<RectangleRegion> toDownloadable({
  required int minZoom,
  required int maxZoom,
  required TileLayer options,
  int start = 1,
  int? end,
  Crs crs = const Epsg3857(),
}) =>
    DownloadableRegion._(
      this,
      minZoom: minZoom,
      maxZoom: maxZoom,
      options: options,
      start: start,
      end: end,
      crs: crs,
    );