Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to display a simple map but it doesn't work in IE7 (nothing is shown and also the div does't take any place at all).

it works fine in Chrome and Firefox. I haven't tried any other versions of IE

the template is Jade, but it shouldn't be a problem to understand (.class and #id)

div.pull-right(style="width: 450px")
            div.well.well-small(style="width: 450px;")
                div#map-holder
                    div.map#map_canvas

this is the map:

script
        function initialize() {
            var loc = new google.maps.LatLng(#{location.lat}, #{location.lng});
            var mapOptions = {
                center: loc,
                zoom: 15,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            var map = new google.maps.Map(document.getElementById("map_canvas"),
                mapOptions);

            var marker = new google.maps.Marker({
                        position: loc,
                        map: map,
                        animation: google.maps.Animation.DROP
            });
        }

CSS

#map-holder img {
max-width: none;
}

.map{
    width:450px;
    height: 400px;
    margin-bottom: 20px;
}

share|improve this question

1 Answer

This is not valid Javascript:

var loc = new google.maps.LatLng(#{location.lat}, #{location.lng});
share|improve this answer
as I said, its a Jade template, those are template variables which are rendered to values – Gal Ben-Haim Jan 30 at 16:37
So what does the generated javascript look like? – duncan Jan 30 at 16:46
<script>function initialize() { var loc = new google.maps.LatLng(32.703086210361, 35.192083804844); var mapOptions = { center: loc, zoom: 15, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map_canvas"), mapOptions); var marker = new google.maps.Marker({ position: loc, map: map, animation: google.maps.Animation.DROP }); }</script> – Gal Ben-Haim Jan 30 at 19:17
what javascript do you have that calls the initialize function? – duncan Jan 30 at 21:40
<body onload="initialize()"> – Gal Ben-Haim Jan 31 at 1:02
show 1 more comment

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.