Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Anyone has any luck styling the Google Maps infowindow? It's getting haywire all over. The CSS is limited. Can anyone show me some sample code?

Thanks.

share|improve this question

2 Answers

up vote 34 down vote accepted

Google wrote some code to assist with this. Here's an example: Example

Here are other styled marker examples: Styled marker examples

And another: Info window custom

share|improve this answer
Very helpful - thanks! – adamwstl Apr 20 '11 at 16:34
@Herman Does this work with KML layer markers also? – Shyam K Oct 9 '12 at 11:00
@ShyamK Here's a question related to styling KML info windows, which might help you. I think many of the examples in my answer might not be applicable to KML (I'm not sure), but can easily be adjusted to work in that case as well. – Herman Schaaf Oct 9 '12 at 12:18

You can modify the whole InfoWindow using jquery alone...

var popup = new google.maps.InfoWindow({
    content:'<p id="hook">Hello World!</p>'
});

Here the <p> element will act as a hook into the actual InfoWindow. Once the domready fires, the element will become active and accessible using javascript/jquery, like $('#hook').parent().parent().parent().parent().

The below code just sets a 2 pixel border around the InfoWindow.

google.maps.event.addListener(popup, 'domready', function() {
    var l = $('#hook').parent().parent().parent().siblings();
    for (var i = 0; i < l.length; i++) {
        if($(l[i]).css('z-index') == 'auto') {
            $(l[i]).css('border-radius', '16px 16px 16px 16px');
            $(l[i]).css('border', '2px solid red');
        }
    }
});

You can do anything like setting a new CSS class or just adding a new element.

Play around with the elements to get what you need...

share|improve this answer
Please refrain from posting the same answer on multiple questions. See this for more information. – Tim Post Dec 22 '12 at 12:39
OK, my bad... thanks for the heads up... – ATOzTOA Dec 22 '12 at 12:54
2  
This works for me (with one less parent), and works acorss browsers (opera, ff, ie, safari, chrome), but doesn't work below IE9. – johntrepreneur Mar 19 at 17:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.