Could we make transparent the background layer on a map fragment which save a map from google maps in order to display only the route (polyline) without the map.
This route will be display on a video (camera which filmed the road) in order to get an augmented reality navigation.
Thanks
Interesting idea, but I don't think it's possible. You could create a
TileProvider
that produces tiles from the video source, but you would have to constantly clear the tile cache and redraw the map. I don't think there's any way to clear the cache short of destroying and recreating the wholeMapView
. It might work, but it would probably be very slow.