On Oct 4, 3:32 pm, Rossko <[EMAIL PROTECTED]> wrote: > > The page is uploaded and can be viewed > > athttp://www.wpsystems.co.za/Googlemap.aspx > > Your script isn't inside the head or the body
It isn't, that's true. Your map script (currently after </body>) should be immediately before </body>. But the key-error problem is the space in your script call in the head: <script src="http://maps.google.com/maps?file=api&v=2& key=..." ...> Note the space just before key= which means that the key parameter is not passed to the script. It will always fail when you don't load the page from localhost or with the file: protocol. It does look like you have the right key. (Not easy to test that, but if I generate a key, characters 31-58 are the same as yours) Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
