TileView icon indicating copy to clipboard operation
TileView copied to clipboard

TileView is a subclass of android.view.ViewGroup that asynchronously displays, pans and zooms tile-based images. Plugins are available for features like markers, hotspots, and path drawing.

Results 19 TileView issues
Sort by recently updated
recently updated
newest added

Does this lib support SVG format

Hello, I'm Pierre, a contributor on this project. It is with great sadness that I have to inform you that Mike Dunn (@moagrius ), the maintainer of TileView, has passed...

``` @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TileView tileView = new TileView.Builder(this) .setSize(3000, 3000) .defineZoomLevel("tile-%d-%d.png") .build(); setContentView(tileView); } ``` So, now how we can use it?

Hello my app is getting this crash, on different kinds of Android devices. I don't see any of my code in the stack trace, so I'm not sure how to...

Steps to reproduce: 1. Put `TileView` in layout. 2. Set layout as content view in Activity 3. Background the app. 4. Kill the process (either system or `Terminate Application` from...

bug
willfix

Minor colouring issue within TileViewDemoAdvanced in Version 4: **Problem** InfoWindow that's displayed when the markers are clicked on has invisible (white on white) text. **Reason** 1. Version 4 hasn't set...

bug
willfix
version 4

I've noticed that sometimes a row or column is set on a tile that is outside of the image's bounds. This originates from `TileView.computeAndRenderTilesInViewport()`: the grid is too large. This...

Tried to get this running. Looks super nice and promising. A few things I noticed while setting it up. 1. I needed to set min sdk to 26 (Oreo) to...

enhancement
willfix

Hello, I am trying to create tile images on the fly to be added and rendered as they become available. After adding images to the tile source directory while navigating...