Add .mbtiles support (#549)
Adds a new [.mbtiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.3/spec.md)
backend, without the grid support. Uses extensive tile content
detection, i.e. if the content is gzipped, png, jpeg, gif, webp.
From CLI, can be as easy as adding a path to a directory that contains a
.mbtiles file (works just like pmtiles support)
```bash
# All *.mbtiles files in this dir will be published.
# The filename will be used as the source ID
martin ./tests/fixtures
```
From configuration file, the path can be specified in a number of ways
(same as pmtiles)
```yaml
mbtiles:
paths:
# scan this whole dir, matching all *.mbtiles files
- /dir-path
# specific mbtiles file will be published as mbtiles2 source
- /path/to/mbtiles2.mbtiles
sources:
# named source matching source name to a single file
pm-src1: /tmp/mbtiles.mbtiles
# named source, where the filename is explicitly set. This way we will be able to add more options later
pm-src2:
path: /tmp/mbtiles.mbtiles
```
Fixes #494
2023-01-09 08:10:23 +03:00
|
|
|
[package]
|
|
|
|
name = "martin-mbtiles"
|
2023-07-04 15:05:23 +03:00
|
|
|
version = "0.4.0"
|
2023-03-25 21:37:42 +03:00
|
|
|
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>", "MapLibre contributors"]
|
|
|
|
description = "A simple low-level MbTiles access and processing library, with some tile format detection and other relevant heuristics."
|
2023-03-25 21:44:36 +03:00
|
|
|
keywords = ["mbtiles", "maps", "tiles", "mvt", "tilejson"]
|
2023-06-01 16:05:06 +03:00
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2023-07-06 03:56:23 +03:00
|
|
|
repository.workspace = true
|
|
|
|
rust-version.workspace = true
|
Add .mbtiles support (#549)
Adds a new [.mbtiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.3/spec.md)
backend, without the grid support. Uses extensive tile content
detection, i.e. if the content is gzipped, png, jpeg, gif, webp.
From CLI, can be as easy as adding a path to a directory that contains a
.mbtiles file (works just like pmtiles support)
```bash
# All *.mbtiles files in this dir will be published.
# The filename will be used as the source ID
martin ./tests/fixtures
```
From configuration file, the path can be specified in a number of ways
(same as pmtiles)
```yaml
mbtiles:
paths:
# scan this whole dir, matching all *.mbtiles files
- /dir-path
# specific mbtiles file will be published as mbtiles2 source
- /path/to/mbtiles2.mbtiles
sources:
# named source matching source name to a single file
pm-src1: /tmp/mbtiles.mbtiles
# named source, where the filename is explicitly set. This way we will be able to add more options later
pm-src2:
path: /tmp/mbtiles.mbtiles
```
Fixes #494
2023-01-09 08:10:23 +03:00
|
|
|
|
2023-06-04 01:54:50 +03:00
|
|
|
[features]
|
2023-06-17 02:11:13 +03:00
|
|
|
# TODO: Disable "cli" feature in default builds
|
2023-07-04 00:29:44 +03:00
|
|
|
default = ["cli", "native-tls"]
|
2023-06-17 02:11:13 +03:00
|
|
|
cli = ["dep:anyhow", "dep:clap", "dep:tokio"]
|
2023-07-04 00:29:44 +03:00
|
|
|
# One of the following two must be used
|
2023-07-04 15:05:23 +03:00
|
|
|
native-tls = ["sqlx/runtime-tokio-native-tls"]
|
|
|
|
rustls = ["sqlx/runtime-tokio-rustls"]
|
2023-06-04 01:54:50 +03:00
|
|
|
|
Add .mbtiles support (#549)
Adds a new [.mbtiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.3/spec.md)
backend, without the grid support. Uses extensive tile content
detection, i.e. if the content is gzipped, png, jpeg, gif, webp.
From CLI, can be as easy as adding a path to a directory that contains a
.mbtiles file (works just like pmtiles support)
```bash
# All *.mbtiles files in this dir will be published.
# The filename will be used as the source ID
martin ./tests/fixtures
```
From configuration file, the path can be specified in a number of ways
(same as pmtiles)
```yaml
mbtiles:
paths:
# scan this whole dir, matching all *.mbtiles files
- /dir-path
# specific mbtiles file will be published as mbtiles2 source
- /path/to/mbtiles2.mbtiles
sources:
# named source matching source name to a single file
pm-src1: /tmp/mbtiles.mbtiles
# named source, where the filename is explicitly set. This way we will be able to add more options later
pm-src2:
path: /tmp/mbtiles.mbtiles
```
Fixes #494
2023-01-09 08:10:23 +03:00
|
|
|
[dependencies]
|
2023-06-01 16:05:06 +03:00
|
|
|
futures.workspace = true
|
|
|
|
log.workspace = true
|
2023-06-04 01:54:50 +03:00
|
|
|
martin-tile-utils.workspace = true
|
2023-09-06 06:12:45 +03:00
|
|
|
serde.workspace = true
|
2023-06-01 16:05:06 +03:00
|
|
|
serde_json.workspace = true
|
|
|
|
sqlx.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
tilejson.workspace = true
|
Add .mbtiles support (#549)
Adds a new [.mbtiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.3/spec.md)
backend, without the grid support. Uses extensive tile content
detection, i.e. if the content is gzipped, png, jpeg, gif, webp.
From CLI, can be as easy as adding a path to a directory that contains a
.mbtiles file (works just like pmtiles support)
```bash
# All *.mbtiles files in this dir will be published.
# The filename will be used as the source ID
martin ./tests/fixtures
```
From configuration file, the path can be specified in a number of ways
(same as pmtiles)
```yaml
mbtiles:
paths:
# scan this whole dir, matching all *.mbtiles files
- /dir-path
# specific mbtiles file will be published as mbtiles2 source
- /path/to/mbtiles2.mbtiles
sources:
# named source matching source name to a single file
pm-src1: /tmp/mbtiles.mbtiles
# named source, where the filename is explicitly set. This way we will be able to add more options later
pm-src2:
path: /tmp/mbtiles.mbtiles
```
Fixes #494
2023-01-09 08:10:23 +03:00
|
|
|
|
2023-06-01 17:13:20 +03:00
|
|
|
# Bin dependencies
|
2023-06-04 01:54:50 +03:00
|
|
|
anyhow = { workspace = true, optional = true }
|
|
|
|
clap = { workspace = true, optional = true }
|
2023-09-06 06:12:45 +03:00
|
|
|
serde_yaml.workspace = true
|
2023-08-16 20:22:01 +03:00
|
|
|
sqlite-hashes.workspace = true
|
2023-07-04 15:05:23 +03:00
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread"], optional = true }
|
2023-06-01 17:13:20 +03:00
|
|
|
|
Add .mbtiles support (#549)
Adds a new [.mbtiles](https://github.com/mapbox/mbtiles-spec/blob/master/1.3/spec.md)
backend, without the grid support. Uses extensive tile content
detection, i.e. if the content is gzipped, png, jpeg, gif, webp.
From CLI, can be as easy as adding a path to a directory that contains a
.mbtiles file (works just like pmtiles support)
```bash
# All *.mbtiles files in this dir will be published.
# The filename will be used as the source ID
martin ./tests/fixtures
```
From configuration file, the path can be specified in a number of ways
(same as pmtiles)
```yaml
mbtiles:
paths:
# scan this whole dir, matching all *.mbtiles files
- /dir-path
# specific mbtiles file will be published as mbtiles2 source
- /path/to/mbtiles2.mbtiles
sources:
# named source matching source name to a single file
pm-src1: /tmp/mbtiles.mbtiles
# named source, where the filename is explicitly set. This way we will be able to add more options later
pm-src2:
path: /tmp/mbtiles.mbtiles
```
Fixes #494
2023-01-09 08:10:23 +03:00
|
|
|
[dev-dependencies]
|
|
|
|
# For testing, might as well use the same async framework as the Martin itself
|
2023-06-01 16:05:06 +03:00
|
|
|
actix-rt.workspace = true
|
2023-06-01 17:13:20 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "mbtiles"
|
|
|
|
path = "src/bin/main.rs"
|
2023-06-17 02:11:13 +03:00
|
|
|
required-features = ["cli"]
|