Blazing fast and lightweight PostGIS, MBtiles and PMtiles tile server, tile generation, and mbtiles tooling.
Go to file
2018-02-06 13:47:47 +03:00
src fix: revert to plain columns in tile properties request 2018-02-06 13:47:47 +03:00
tests fix tests 2018-01-30 12:36:48 +03:00
.gitignore initial commit 2017-09-30 13:55:44 +03:00
.travis.yml rewrite tile query using CTE 2018-01-31 17:11:14 +03:00
Cargo.lock fix: tileset property types query 2018-02-05 17:13:36 +03:00
Cargo.toml implement lru cache for tiles 2018-01-26 12:45:09 +03:00
Dockerfile update rust-musl-builder image to 1.23.0 2018-01-31 17:14:09 +03:00
README.md rename falcon into martin 2018-01-16 15:55:05 +03:00

Martin

Build Status

PostGIS Mapbox Vector Tiles server.

Warning: this is experimental

Installation

git clone git@github.com:urbica/martin.git
cd martin
cargo build --release
./target/release/martin

Usage

DATABASE_URL=postgres://postgres:password@localhost:5432/test martin

Using with Docker

docker run -d —rm —name martin \
  -p 3000:3000 \
  -e DATABASE_URL=postgres://postgres:password@localhost:5432/test \
  urbica/martin

Development

Install project dependencies and check that the tests run

cargo test
cargo run