You're loading jQuery twice (and 1.3.1? why such an old version?), the Maps
API V2 twice (and two different revisions of V2!), the Maps API V3 once, and
gmapez-2.5 twice.

jQuery:

<script type="text/javascript" src="js/jquery.js"></script>

google.load("jquery", "1.3.1");

Maps API V2:

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

google.load("maps", "2.x");

(note that the 2.x says you want th experimental version - not a good idea)

Maps API V3:

<script type="text/javascript" src="
http://maps.google.com/maps/api/js?sensor=true";></script>

Actually regarding the two google.load() calls, I don't see where you're
loading the Google Ajax loader, so maybe those are just failing. Or maybe
the Maps API V3 tag is also pulling the Ajax loader, I don't know. Normally
to use google.load(), there would be a script tag like this:

<script type="text/javascript" src="http://www.google.com/jsapi?key=ABCDEFG
"></script>

Also, your page immediately reloads after displaying the API key alert. I
had to disable JavaScript just so I could get to where I could do a View
Source.

Fix those problems and you'll have a better chance of it working.

-Mike

On Thu, Sep 23, 2010 at 8:25 AM, zico <[email protected]> wrote:

> Hello,
> I have the website www.voxi.me and everytime I load it or any of its
> pages, I get the error message "This website needs a different google
> GMAP KEY".  I tried to create it twice, but it is still not working.
> Any help on this would be greatly appreciated.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Maps API V2" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-maps-api%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-maps-api?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" 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