A versatile mapping package for Flutter. Simple and easy to learn, yet completely customizable and configurable, it's the best choice for mapping in your Flutter app.
Fallback to show a custom tile while tile is loading.
For my use case, I have a tile server serving transparent tiles. The tiles are mostly content:
When I load new tiles, the map doesn't render anything where it hasn't yet loaded:
It would be ideal if I had some way to provide a custom tile that can render content in the loading area. I would render with the transparent red I am using elsewhere.
For context, here is my layer code, containing an Opacity widget:
What do you want implemented?
Fallback to show a custom tile while tile is loading.
For my use case, I have a tile server serving transparent tiles. The tiles are mostly content:
When I load new tiles, the map doesn't render anything where it hasn't yet loaded:
It would be ideal if I had some way to provide a custom tile that can render content in the loading area. I would render with the transparent red I am using elsewhere.
For context, here is my layer code, containing an Opacity widget:
What other alternatives are available?
I could add a background layer but this wouldn't work with the transparent tiles.
Can you provide any other information?
I could be interested in implementing a pr if someone can give me some guidance to where I should start in the TileLayer code.
Severity
Annoying: Currently have to use workarounds