Is this really what you had in your code? <script type="text/javascript" src="http://maps.google.com/maps?file=api&v=2.x&key=MY_KEY <view-source:http://maps.google.com/maps? file=api&v=2.x&key=ABQIAAAAfl91tKAG5kKTdm...>"></script>
Doesn't look right at all, your're trying to load the API twice, and what's with the "<view-source:" in the middle. So it ain't gonna load at all. All you need is: <script type="text/javascript" src="http://maps.google.com/maps?file=api&v=2.x&key=MY_KEY&sensor=TRUE OR FALSE(NOT BOTH!)></script> Also, you shouldn't use 2.x on a live site, but as V2 is not being developed any more I shouldn't think it matters that much now, unless there are bugs in 2.x. -- 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.
