Some time ago, I used the usual way to load the Google Maps API as follows:
<script type="text/javascript" src="http://maps.google.com/maps?file=api&v=2&key=abcdefg&sensor=true">
Later I switched to the Google AJAX API to download the Google Maps API. This is because several “widgets” on my website need the Google Ajax API, so I decided to be consistent and used the AJAX API to load Google Maps:
<script type="text/javascript" src="http://www.google.com/jsapi?key=abcdef"></script> <script type="text/javascript"> google.load("maps", "2", {"other_params": "sensor=true"}); </script>
Now that I finally decided to use the Google Maps API v3, this page does not list the API v3 in the list of available versions. None of the API v3 documentation examples show the use of the AJAX API. Is it possible (and supported) to download the Google Maps API v3 through the AJAX API loader?
Salman a
source share