Update documentation

This commit is contained in:
Emux 2019-09-09 13:12:22 +03:00
parent a9e18a2add
commit 6ab98419df
No known key found for this signature in database
GPG Key ID: 64ED9980896038C3
3 changed files with 13 additions and 1 deletions

View File

@ -8,7 +8,7 @@
VTM (Vector Tile Map) was developed within the [OpenScienceMap](https://github.com/opensciencemap) project. 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. 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: - Support for multiple tile sources:
- OpenScienceMap vector tiles - OpenScienceMap vector tiles
- Mapsforge vector maps - Mapsforge vector maps
- MBTiles vector & raster maps
- Mapbox vector tiles (e.g. Mapilion, Mapzen, Nextzen, OpenMapTiles) - Mapbox vector tiles (e.g. Mapilion, Mapzen, Nextzen, OpenMapTiles)
- GeoJSON vector tiles (e.g. Mapzen, Nextzen) - GeoJSON vector tiles (e.g. Mapzen, Nextzen)
- Raster tiles: any quadtree-scheme tiles as texture - Raster tiles: any quadtree-scheme tiles as texture

View File

@ -2,6 +2,7 @@
## New since 0.11.1 ## 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) - 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-lwjgl module [#714](https://github.com/mapsforge/vtm/pull/714)
- vtm-desktop-lwjgl3 module [#717](https://github.com/mapsforge/vtm/pull/717) - vtm-desktop-lwjgl3 module [#717](https://github.com/mapsforge/vtm/pull/717)

View File

@ -94,6 +94,16 @@ implementation 'com.squareup.okhttp3:okhttp:3.8.0'
implementation 'com.squareup.okio:okio:1.13.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 ### Mapbox vector tiles
```groovy ```groovy