This app helps you fetch map tiles quickly, for offline use. You can pick places using a simple text interface, choose tiles provider and map style, and then download the exact areas that you need. It shows download progress, speed, ETA, and estimates how much disk space will the maps use.
pipx installs Python apps into isolated environments and exposes the commands on your PATH.
brew install pipx
pipx ensurepath # then restart your terminal
pipx install mt-downloader
mt-downloader # or: map-tiles-downloaderFirst install latest Python from the Windows Store.
Then in Windows Terminal, run (one by one):
pip install pipx
python -m pipx ensurepath # then close and restart the Terminal
pipx install mt-downloader
mt-downloaderA Dockerfile is included. Build the image once, then run it interactively and mount a host directory at /maps to keep the downloaded tiles on your machine:
docker build -t mt-downloader .
docker run --rm -it -v "$PWD/maps:/maps" mt-downloaderTo use the non-interactive subcommands:
docker run --rm -it -v "$PWD/maps:/maps" mt-downloader \
bbox 45.9668 5.7767 48.3068 8.7167 --max-zoom 12 -o /maps/outFor Thunderforest, pass your API key with -e:
docker run --rm -it -e THUNDERFOREST_API_KEY="your_key_here" \
-v "$PWD/maps:/maps" mt-downloaderBy default the image installs the version pinned in the Dockerfile. To build against a different release, pass --build-arg MT_DOWNLOADER_VERSION=x.y.z.
Download the installer/pre-compiled binaries from the Github Releases page.
The source code lives in the GitHub repository: tekk/map-tiles-downloader.
First, install the project into a virtual environment. Then launch the interactive interface and follow the prompts. Select one or more continents, countries, and regions, choose a provider (Thunderforest or OpenStreetMap), set zoom levels, and pick an output directory. If the provider needs an API key you’ll be asked for it.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install . # note the dot at the end of command
mt-downloaderIn Powershell in Windows Terminal (not cmd), run:
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -r .\requirements.txt
pip install . # note the dot at the end of command
mt-downloaderIf you need to automate, or prefer commands instead of the guided interface, there are bbox and kml subcommands (beta). Bounding box mode lets you fetch tiles for a given rectangle. KML mode expands points and routes into small areas around each location.
mt-downloader bbox SOUTH WEST NORTH EAST --max-zoom 12 -o ~/maps/outmt-downloader kml /path/to/file.kml --max-zoom 12 -o ~/maps/outFor Thunderforest, set your API key once per session, or pass it with -k.
export THUNDERFOREST_API_KEY="your_key_here"You can also preview a download without fetching data to see how many tiles you’ll get.
mt-downloader bbox 45.9668 5.7767 48.3068 8.7167 --max-zoom 12 --dry-runThat’s all you need. Launch the TUI, pick areas, and the downloader will handle the rest.
The region picker uses the geonamescache library for its area data. US states are listed by their proper names (e.g. California, Texas). For other countries, the library doesn't ship subdivision names, so each first-level region is labeled with its raw geonames admin1 code plus a hint of the most populous city it contains, for example:
- Canada:
08 (around Toronto)— Ontario - Poland:
78 (around Warsaw)— Mazowieckie - Germany:
02 (around Munich)— Bavaria
The numeric code matches the adm1 dropdown under the Hierarchy tab on geonames.org, so you can cross-check the exact administrative region if needed.
I'll be very happy for any kind of contributions. Feel free to fork and make a PR, or open an issue. I'll try to maintain this project as long as I'll have enough spare time to do so.
This project is created and maintained with ❤️ by tekk.