I'm working with a Java interface that builds slippy maps out of 256 pixel tiles through HTTP requests. I've found the interface below which works fine:
However in Google maps terms it suggests that it is not approved to use interfaces which are not documented, and I find no documentation of this interface anywhere. The only documented interfaces I can find are:
1) Static maps API, which is not useful for a slippy map at all
2) JavaScript API, which does not seem practical for retrieving arbitrary 256x256 tiles, and moreover even if I did choose to do it that way, I think that attribution images would be present in every tile which would look ridiculous. And of course, the JS API uses this "undocumented" mt0 interface from above, under the hood.
Am I out of luck completely?