Google Map Image Copyright - can i hide it?

Associate
Joined
21 Oct 2008
Posts
1,679
Location
Mooching... in your house
On a website I am creating, we have a google map... the problem is that when at the right zoom and map type (hybrid) for the project, there is so many image credits at the bottom it spills over...

anyone know of any google map api commands that will hide maybe reduce the size of the white text? (doubtful i know but worth the ask...)

google-map-overflow.png


if not no worries, can probably crop it with CSS if i need to... i can also probably hide the whole thing with javascript although i don't want to do that since it has a terms of use link and the like which i'm sure you're not supposed to remove...

so changing the size, any ideas?
 
Last edited:
i'll leave this open incase there is a better solution, but for now i've just used overflow:hidden to crop off the first few letters of imagery - I would have thought this would be fine as it hasn't disrupted any important info...
 
Perhaps try...

white-space: pre;
or
white-space:normal;

Should cause the text to wrap onto the next line..

or just adjust the font size so it fits...
 
Back
Top Bottom