Hey guys, maybe this is of interest to you. I am currently working on a workaround that will provide RTB with alternative elevation data and terrain textures. For many regions, Google unfortunately provides poorly resolved images and very rough elevation data. On the other hand, there are many regional mapping services that provide much more detailed data. This data can often be accessed from WMS servers. And that's what I do. I have a web server running on my computer. The URL maps.google.com which requests RTB is redirected to localhost. Because RTB communicates with Google via HTTPS, I had to generate a self-signed SSL certificate for the address maps.google.com on my server and import it into the Windows Certificate Store as a trusted root certificate authority. With PHP scripts I intercept the requests RTB makes to Google and convert them so that a regional WMS server provides me with the appropriate answers. I convert the output back to Google format, so that RTB understands it. And the greatest thing is - it works!
Some things are not quite right yet. For example, At the highest level of detail, the terrain is currently a little fissured. And the biggest disadvantage is that the WMS server doesn't deliver as fast as Google does. If you start a new project in RTB and request "Google", it can take up to an hour. An advantage is that I save the requested map tiles. So you can later manually assemble them to a high resolution terrain texture, which makes laying roads easier.
If all this goes well, I will write a manual for interested people and provide the scripts. But keep in mind that this is not a one-click solution and the setup is a bit more demanding. It will certainly not be a solution that works instantly with any WMS server. Some knowledge of PHP will be required.