On Jul 20, 6:04 pm, ddoc <[email protected]> wrote: > > When I develop I use this <script type="text/javascript" src="http:// > maps.google.com/maps/api/js?sensor=false"></script> . > But when I want to deploy it I add the script <script src="http:// > maps.google.com/maps? > file=api&v=3&sensor=false&key=ABQIAAAAc8ZAYeiGmj5Tv8KeVlcZTBT2yXp_ZAY8_ufC3CFXhHIE1NvwkxRiqKyLF1_Ld6N0mH3F4ktRuMnqcg" > type="text/javascript"></script> >
Version 2 and 3 of the javascript API have different urls Version 2: http://maps.google.com/maps?file=api&v=2&key=abcdefg&sensor=true_or_false Version 3: http://maps.google.com/maps/api/js?sensor=true_or_false The version (v=?) parameter is optional in version 3, and no keys are required. ... -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
