This has nothing to do with the version of the API. Your html code is not the same for your two examples.......you're missing the content type from the V3 sample, which is required for strict.
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> You're also encapsulating your javascript in the V2 and leaving it out of the V3. <script type="text/javascript"> <!-- your javascript code goes here //--> </script> A good practice is to validate your html (ESPECIALLY when using strict). It will not display properly in all browsers without validation. http://validator.w3.org/ -- 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.
