Replies: 2 comments 4 replies
-
Tileserver-gl is an option. it can take your pbf and style and serve rendered raster/wmts tiles rendered with maplibe-native it doesn't do bitmap as far as i know though. it does jpg, png, and webp. bitmap isnt really a good web image type. |
Beta Was this translation helpful? Give feedback.
4 replies
-
This is also an option, It can make pre-rendered mbtiles from your styles (although again is probably not what OP is looking for) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a custom map renderer on Android which works with
Bitmap
s. It works really well with WMTS tile servers which provide png or jpeg tiles. However I'm having a hard time figuring out how to deal with vector tiles.All I need is to convert pbf tiles to
Bitmap
s. Is it possible?For example, given this pbf tile : https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/tile/6/23/31.pbf
And this style, is there a way to get
png
s orjpeg
s from pbf tiles on Android?Beta Was this translation helpful? Give feedback.
All reactions