Serve your MBTiles map on the web.
./gradlew build./gradlew test./gradlew -Dwebdriver.chrome.driver=/Your/Path/To/chromedriver e2ejava -jar mbtilesserver-0.4.0.jar --file=countries.mbtiles --readOnly=trueor if you are building the project:
./gradlew bootRunor
java -jar build/libs/mbtilesserver-0.4.0.jar --file=countries.mbtiles --readOnly=trueand browse to http://localhost:8080:
Inspect metadata
curl http://localhost:8080/metadatacurl http://localhost:8080/pyramidcurl http://localhost:8080/tile/countsCreate QGIS/GDAL Layer File
curl -o layer.xml http://localhost:8080/gdal && qgis layer.xmlDownload Tiles
curl -o tile_0_0_0.png http://localhost:8080/tile/0/0/0curl -o tile_1_0_0.png http://localhost:8080/tile/1/0/0Download Raster
curl -o us.png http://localhost:8080/raster/400/400/-156.533203,3.688855,-50.712891,56.800878curl -o us.png http://localhost:8080/raster/4/-122.387/47.581/EPSG:4326/400/400Add/Update a Tile
curl -F "[email protected]" http://localhost:8080/tile/5/0/0curl -o tile_5_0_0.png http://localhost:8080/tile/5/0/0Delete a Tile
curl -X DELETE http://localhost:8080/tile/5/0/0curl http://localhost:8080/tile/5/0/0
