# Introduction

FMTC also provides the ability to bulk download areas of maps in one-shot, known as 'regions'. There are multiple different types/shapes of regions available: [Create A Region](/v9/bulk-downloading/regions.md#types-of-region).

{% hint style="warning" %}
Before using FMTC, especially to bulk download or import/export, ensure you comply with the appropriate restrictions and terms of service set by your tile server. Failure to do so may lead to any punishment, at the tile server's discretion.

This library and/or the creator(s) are not responsible for any violations you make using this package.

For example, OpenStreetMap's tile server forbids bulk downloading: <https://operations.osmfoundation.org/policies/tiles>. And Mapbox has restrictions on importing/exporting from outside of the user's own device.

For testing purposes, check out the testing tile server included in the FMTC project: [Testing Tile Server](/v9/bulk-downloading/testing-tile-server.md).
{% endhint %}

Downloading is extremely efficient and fast, and uses multiple threads and isolates to achieve write speeds of hundreds of tiles per second (if the network/server speed allows). After downloading, no extra setup is needed to use them in a map (other than the usual [flutter\_map Integration](/v9/stores-and-roots/fm-integration.md)).

It is also simple to understand and implement:

1. [Create a region based on the user's input](/v9/bulk-downloading/regions.md)
2. [Convert that region into a downloadable region](/v9/bulk-downloading/prepare.md)\
   \&#xNAN;*↳ Optionally,* [*check the number of tiles in the region*](/v9/bulk-downloading/prepare.md#checking-number-of-tiles) *before downloading*
3. [Start downloading that region](/v9/bulk-downloading/start.md)\
   \&#xNAN;*↳ Optionally, when testing,* [*try the miniature tile server*](/v9/bulk-downloading/testing-tile-server.md)
4. [Listen for progress](/v9/bulk-downloading/start.md#listen-for-progress) events to update your user
5. Optionally, [control (pause/resume/cancel) the download](/v9/bulk-downloading/control.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://fmtc.jaffaketchup.dev/v9/bulk-downloading/introduction.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
