I wish to allow the user to flip between a normal map and satellite view without completely redrawing the map.
It could be quite simple:
Sadly gMap.MapType is Read Only so it can't be done this way.
What is the best way to do this?
It could be quite simple:
B4X:
If gmap.MapType = gmap.MAP_TYPE_NORMAL Then
gmap.MapType = gmap.MAP_TYPE_SATELLITE
Else
gmap.MapType = gmap.MAP_TYPE_NORMAL
End If
What is the best way to do this?