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 have the following code in my webpage - the map div is not showing the google map but I can't find anything wrong with the code:

$mapCode = "<script src=\"http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false&amp;key=$google_maps_apiKey\" type=\"text/javascript\"></script>
   <div id=\"map_canvas\" style=\"width: 500px; height: 500px\"></div>
<script type=\"text/javascript\">
    function showAddress(address) {
        var map = new GMap2(document.getElementById('map_canvas'));
         alert(\" not found\");
         var geocoder = new GClientGeocoder();
         geocoder.getLatLng(
         address,
              function(point) {
                   if (!point) {
                      alert(address + \" not found\");
                   } else {
                      map.setCenter(point, 13);

                      var marker = new GMarker(point);
                      map.addOverlay(marker);
                   }
               }
             );
           }
showAddress(\"$address\");
</script>";

echo $mapCode;

Any help is much appreciated. Thanks

share|improve this question
I am getting a not found alert. Is this the problem? – Salman A Oct 26 '11 at 12:01
I found the problem, checked the firebug console, there was a small error in the map.setCenter line – EI756 Oct 26 '11 at 12:03

1 Answer

up vote 2 down vote accepted

I just got it to work by physically telling it a height.... in my css I put:

#map_canvas {
     height:100px; margin: 0; padding: 0;
}

instead of

#map_canvas {
     height:100%; margin: 0; padding: 0;
}

don't know why it didn't originally work...

share|improve this answer

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.