mrgruby - if you did what I did, and copied the example code in the
'Google Map Basics - The "Hello World" of Google Maps', that's
probably where the error is.  I had exactly the same problem, and have
just tracked it down to a mistake in their example!  Fixed the code,
uploaded it and it's working fine.

Specifically, the "&" preceeding "sensor=true_or_false" (pos 74 below)
should be "&" like all the others in the string.  Then it works.

IE, their example:
<script src="http://maps.google.com/maps?
file=api&amp;v=2&amp;key=abcdefg&sensor=true_or_false"
            type="text/javascript"></
script>                             ^
 
^
should be:

<script src="http://maps.google.com/maps?
file=api&amp;v=2&amp;key=abcdefg&amp;sensor=true_or_false"
            type="text/javascript"></
script>
^^^^^
 
^^^^^

HTH

John

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to