1️⃣Create A Region

Regions (BaseRegions) are geographical areas that do not yet have any of the necessary extra information to start a download (this is the responsibility ofDownloadableRegion).

There are 4 types of BaseRegion:

RectangleRegions are defined by a LatLngBounds: two opposite LatLngs.

final region = RectangleRegion(
    LatLngBounds(LatLng(0, 0), LatLng(1, 1)),
);

This is usually all you get from most apps, so why not give your user a unique experience with some of our other region types...

Last updated

© Luka Stillingfleet (JaffaKetchup)