I have my own offline map data in my application, but only for a small region. Now I would like to overlay this data on my Google V2 map. This is already working. The only thing that is not there right now is that it GoogleMapsstill overlays road names / city names over my plates.
Is it possible to display a Google V2 map in Android with MAP_TYPE_NORMALand overlay custom tiles over roads?
TileOverlay overlay = map.addTileOverlay(new
TileOverlayOptions().tileProvider(provider).zIndex(2000));
ZIndex doesn't seem to help me here.
Georg source
share