Hi Kiko, Can you also make sure that you have downloaded display.css as it is also required.
It is referred to by '<link href="default.css" rel="stylesheet" type="text/css" />' Thanks -- Luke On Wed, Jun 30, 2010 at 6:43 AM, Kiko <[email protected]> wrote: > I did all that was explained here and nothing works. > I'm still getting a blank page. > If I wrote just few lines in HTML (such as <p>test</p>) just to see if > the page is coming in the browser, I get only the "test" word. > What am I doing wrong? > thanks > > I'm using the following code: > > <!DOCTYPE html> > <html> > <head> > <meta name="viewport" content="initial-scale=1.0, user-scalable=no" / > > > <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> > <title>Google Maps JavaScript API v3 Example: Map Simple</title> > <link href="default.css" rel="stylesheet" type="text/css" /> > <script type="text/javascript" src="http://maps.google.com/maps/api/js? > sensor=false"></script> > <script type="text/javascript"> > function initialize() { > var myLatlng = new google.maps.LatLng(-34.397, 150.644); > var myOptions = { > zoom: 8, > center: myLatlng, > mapTypeId: google.maps.MapTypeId.ROADMAP > } > var map = new > google.maps.Map(document.getElementById("map_canvas"), myOptions); > } > </script> > </head> > <body onload="initialize()"> > <div id="map_canvas"></div> > > <p>test</p> > > </body> > </html> > > -- > 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]<google-maps-js-api-v3%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-maps-js-api-v3?hl=en. > > -- 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.
