Reputation: 3009
I'm working on Google Map API v3.
But when zoom in with big level zoom at Sea Area. Google Map API return 404 error.
But on https://www.google.com/maps/@28.5698026,-78.3196671,8000m/data=!3m1!1e3
It's still working without 404 Error. Look like they skip loading new tiles if Google Map API return 404? I'm not sure about this.
This is my result:
This is Google Map result:
Thank you for reading my question!
Upvotes: 0
Views: 354
Reputation: 473
You can use the Maximum Zoom Image Service to get the current maximum zoom Google has for imagery at a given location. You can connect this to the center_changed
event to react to the user panning the map.
I wrote a small example on how to do this here: https://jsfiddle.net/SirWolf/m684t5yp/
There is however no way to have a mix of different zoom levels in one view.
Upvotes: 1