Reputation: 1613
Is there any way how to suppress hiding (some) details when zooming out in Google Maps?
For instance, I want to suppress hiding of the feature type transit.line
, which is hidden on zoom level 10 and less. Is it possible, for example, by overriding events attached to zoom_changed
?
Upvotes: 0
Views: 345
Reputation: 5609
I believe the answer is no, there isn't a way to do it.
Styled maps allow you to specify which layers are available on the map. Google split out the original png bitmaps isolating each component (such as transit lines), with the rest of the png transparent. The problem here is that components that are not in the combined png will also not be available in the separated out pngs.
Playing around with the Styled Map Wizard and chrome dev tools shows that even if you specify transit lines be viewed at zoom levels < 10, the pngs that google gives you just don't have the images you want.
Upvotes: 1