I am having problems trying to display the map on my website. I have
used firebug to trap errors but unfortunately there are none, the code
I am using is

    <meta name="viewport" content="initial-scale=1.0, user-
scalable=no" />
    <script type="text/javascript" src="http://maps.google.com/maps/
api/js?v=3&sensor=false&region=GB"></script>

<script type="text/javascript">
    function initialize()
    {ldelim}
        var latlng = new google.maps.LatLng(-34.397, 150.644);
        var myOptions = {ldelim} zoom: 8, center: latlng, mapTypeId:
google.maps.MapTypeId.ROADMAP {rdelim};
        var map = new
google.maps.Map(document.getElementById("map_canvas"), myOptions);
        console.trace();
    {rdelim}
</script>

<body onload="initialize()">

<div id="map_canvas" style="width:100%; height:100%;"></div>

any assistance would be great

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to