I created a groundOverlay that uses the Google Maps API. I'd like to make the ground fit much as possible. I also tried to use padding
option or zoom++
but it not work as I expected.
Current:
Expected:
Re-production: https://jsfiddle.net/abinhho/5kvtfpeo/10/
The problem is quite easy to understand.
fitBounds()
will fit the map to the given bounds and make sure the entire bounds are visible within the map viewport. So it will choose the best zoom level (and center point) to achieve that.It might display with a good margin around, but would not fit anymore if you zoom in one more level. Try it with the below example.
The only thing you could do about that, is to use the
padding
interface, maybe with a negative value. But then you might have the opposite result; the image might not be shown entirely.