1️⃣Create A Region
Regions (BaseRegion
s) 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
:
RectangleRegion
s are defined by a LatLngBounds
: two opposite LatLng
s.
final region = RectangleRegion(
LatLngBounds(LatLng(0, 0), LatLng(1, 1)),
);
Last updated
Was this helpful?