2023-06-01 17:11:42 +03:00
# Martin
2017-10-09 14:29:03 +03:00
2023-06-01 17:11:42 +03:00
[![Book ](https://img.shields.io/badge/docs-Book-informational )](https://maplibre.org/martin)
[![docs.rs docs ](https://docs.rs/martin/badge.svg )](https://docs.rs/martin)
[![Slack chat ](https://img.shields.io/badge/Chat-on%20Slack-blueviolet )](https://slack.openstreetmap.us/)
[![GitHub ](https://img.shields.io/badge/github-maplibre/martin-8da0cb?logo=github )](https://github.com/maplibre/martin)
[![crates.io version ](https://img.shields.io/crates/v/martin.svg )](https://crates.io/crates/martin)
[![Security audit ](https://github.com/maplibre/martin/workflows/Security%20audit/badge.svg )](https://github.com/maplibre/martin/security)
[![CI build ](https://github.com/maplibre/martin/workflows/CI/badge.svg )](https://github.com/maplibre/martin/actions)
2017-10-15 14:48:23 +03:00
2023-06-01 23:15:05 +03:00
Martin is a tile server able to generate and serve [vector tiles ](https://github.com/mapbox/vector-tile-spec ) on the fly from large [PostGIS ](https://github.com/postgis/postgis ) databases, [PMTile ](https://protomaps.com/blog/pmtiles-v3-whats-new ), and [MBTile ](https://github.com/mapbox/mbtiles-spec ) files, allowing multiple tile sources to be dynamically combined into one. Martin optimizes for speed and heavy traffic, and is written in [Rust ](https://github.com/rust-lang/rust ).
2023-02-17 04:46:07 +03:00
2023-06-01 17:11:42 +03:00
See [Martin book ](https://maplibre.org/martin/ ) for complete documentation.
2023-02-17 04:46:07 +03:00
2023-06-01 17:11:42 +03:00
![Martin ](https://raw.githubusercontent.com/maplibre/martin/main/logo.png )
2023-02-17 04:46:07 +03:00
2023-06-03 00:00:19 +03:00
## Installation
_See [installation instructions ](https://maplibre.org/martin/installation.html ) in the Martin book._
2023-02-17 04:46:07 +03:00
2023-06-03 00:00:19 +03:00
**Prerequisites:** If using Martin with PostgreSQL database, you must install PostGIS with at least v3.0+, v3.1+ recommended.
2023-02-17 04:46:07 +03:00
You can download martin from [GitHub releases page ](https://github.com/maplibre/martin/releases ).
| Platform | Downloads (latest) |
|----------|------------------------|
| Linux | [64-bit][rl-linux-tar] |
| macOS | [64-bit][rl-macos-tar] |
| Windows | [64-bit][rl-win64-zip] |
[rl-linux-tar]: https://github.com/maplibre/martin/releases/latest/download/martin-Linux-x86_64.tar.gz
[rl-macos-tar]: https://github.com/maplibre/martin/releases/latest/download/martin-Darwin-x86_64.tar.gz
[rl-win64-zip]: https://github.com/maplibre/martin/releases/latest/download/martin-Windows-x86_64.zip
If you are using macOS and [Homebrew ](https://brew.sh/ ) you can install martin using Homebrew tap.
```shell
2023-05-24 07:34:12 +03:00
brew tap maplibre/martin https://github.com/maplibre/martin.git
brew install maplibre/martin/martin
2023-02-17 04:46:07 +03:00
```
2023-06-03 00:00:19 +03:00
## Running Martin Service
_See [running instructions ](https://maplibre.org/martin/run.html ) in the Martin book._
2023-02-17 04:46:07 +03:00
2023-06-01 23:15:05 +03:00
Martin supports any number of PostgreSQL/PostGIS database connections with [geospatial-enabled ](https://postgis.net/docs/using_postgis_dbmanagement.html#geometry_columns ) tables and tile-producing SQL functions, as well as [PMTile ](https://protomaps.com/blog/pmtiles-v3-whats-new ) and [MBTile ](https://github.com/mapbox/mbtiles-spec ) files as tile sources.
2023-02-17 04:46:07 +03:00
2023-06-01 23:15:05 +03:00
Martin can auto-discover tables and functions using a [connection string ](https://maplibre.org/martin/PostgreSQL-Connection-String.html ). A PG connection string can also be passed via the `DATABASE_URL` environment variable.
Each tile source will have a [TileJSON ](https://github.com/mapbox/tilejson-spec ) endpoint.
#### Examples
2023-02-17 04:46:07 +03:00
```shell
2023-06-01 23:15:05 +03:00
# publish all tables and functions from a single database
2023-06-07 19:53:24 +03:00
export DATABASE_URL="postgresql://user:password@host:port/database"
2023-06-01 23:15:05 +03:00
martin
2023-02-17 04:46:07 +03:00
2023-06-01 23:15:05 +03:00
# same as above, but passing connection string via CLI, together with a directory of .mbtiles/.pmtiles files
martin postgresql://user:password@host:port/database path/to/dir
2023-02-17 04:46:07 +03:00
2023-06-01 23:15:05 +03:00
# publish all discovered tables/funcs from two DBs
# and generate config file with all detected sources
martin postgres://... postgres://... --save-config config.yaml
2023-02-17 04:46:07 +03:00
2023-06-01 23:15:05 +03:00
# use configuration file instead of auto-discovery
martin --config config.yaml
2023-02-17 04:46:07 +03:00
```
2023-06-03 00:00:19 +03:00
#### Docker Example
_See [Docker instructions ](https://maplibre.org/martin/run-with-docker.html ) in the Martin book._
Martin is also available as a [Docker image ](https://ghcr.io/maplibre/martin ). You could either share a configuration file from the host with the container via the `-v` param, or you can let Martin auto-discover all sources e.g. by passing `DATABASE_URL` or specifying the .mbtiles/.pmtiles files.
```shell
export PGPASSWORD=postgres # secret!
docker run -p 3000:3000 \
-e PGPASSWORD \
-e DATABASE_URL=postgresql://user@host:port/db \
-v /path/to/config/dir:/config \
ghcr.io/maplibre/martin --config /config/config.yaml
```
2023-06-01 17:11:42 +03:00
## API
2023-06-03 00:00:19 +03:00
_See [API documentation ](https://maplibre.org/martin/using.html ) in the Martin book._
2023-02-17 04:46:07 +03:00
2023-06-01 23:15:05 +03:00
Martin data is available via the HTTP `GET` endpoints:
2021-10-17 17:30:35 +03:00
2023-06-03 00:00:19 +03:00
| URL | Description |
|----------------------------------------|-----------------------------------------------|
| `/` | Status text, that will eventually show web UI |
| `/catalog` | List of all sources |
| `/{sourceID}` | Source TileJSON |
| `/{sourceID}/{z}/{x}/{y}` | Map Tiles |
| `/{source1},...,{sourceN}` | Composite Source TileJSON |
| `/{source1},...,{sourceN}/{z}/{x}/{y}` | Composite Source Tiles |
| `/health` | Martin server health check: returns 200 `OK` |
2023-06-01 17:11:42 +03:00
## Documentation
See [Martin book ](https://maplibre.org/martin/ ) for complete documentation.