From 6ab98419dffa0c8cfe36d4eecc4eeffa65f12cc6 Mon Sep 17 00:00:00 2001 From: Emux Date: Mon, 9 Sep 2019 13:12:22 +0300 Subject: [PATCH] Update documentation --- README.md | 3 ++- docs/Changelog.md | 1 + docs/Integration.md | 10 ++++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f6efd71..c66b09d2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ VTM (Vector Tile Map) was developed within the [OpenScienceMap](https://github.com/opensciencemap) project. -**This fork continues VTM development and provides compatibility with latest [Mapsforge](https://github.com/mapsforge/mapsforge).** +**This fork continues VTM development and provides compatibility with [Mapsforge](https://github.com/mapsforge/mapsforge).** See the **[integration guide](docs/Integration.md)** and [changelog](docs/Changelog.md). And read through [how to contribute](docs/CONTRIBUTING.md) guidelines. @@ -21,6 +21,7 @@ If you have any questions or problems, don't hesitate to ask our public [forum]( - Support for multiple tile sources: - OpenScienceMap vector tiles - Mapsforge vector maps + - MBTiles vector & raster maps - Mapbox vector tiles (e.g. Mapilion, Mapzen, Nextzen, OpenMapTiles) - GeoJSON vector tiles (e.g. Mapzen, Nextzen) - Raster tiles: any quadtree-scheme tiles as texture diff --git a/docs/Changelog.md b/docs/Changelog.md index a4a6812d..5b6ce0dc 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -2,6 +2,7 @@ ## New since 0.11.1 +- MBTiles vector tile source (Android) [#740](https://github.com/mapsforge/vtm/pull/740) - Render themes: text background color [#737](https://github.com/mapsforge/vtm/pull/737) - vtm-desktop-lwjgl module [#714](https://github.com/mapsforge/vtm/pull/714) - vtm-desktop-lwjgl3 module [#717](https://github.com/mapsforge/vtm/pull/717) diff --git a/docs/Integration.md b/docs/Integration.md index 136720b0..9c058103 100644 --- a/docs/Integration.md +++ b/docs/Integration.md @@ -94,6 +94,16 @@ implementation 'com.squareup.okhttp3:okhttp:3.8.0' implementation 'com.squareup.okio:okio:1.13.0' ``` +### MBTiles (Android) + +```groovy +implementation 'org.mapsforge:vtm-android-mvt:[CURRENT-VERSION]' +implementation 'org.mapsforge:vtm-mvt:[CURRENT-VERSION]' +implementation 'com.google.protobuf:protobuf-java:3.5.1' +implementation 'com.wdtinc:mapbox-vector-tile:3.0.0' +implementation 'org.locationtech.jts:jts-core:1.15.0' +``` + ### Mapbox vector tiles ```groovy