So I signed up for a Google Maps API key and the documentation I got after doing so says to load the Javascript Maps API, use the following code:
<script type="text/javascript" src="http://maps.google.com/maps?file=api&v=2&sensor=false&key=[My API Key]"></script>
In using that code snippet I can't get the Google Maps Tutorial working so I changed the script tag above to match the one in the tutorial:
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
And that one seems to work fine and doesn't have a reference to my API key... if that works fine is there any reason to get and use the API key?
Thanks!