On Nov 1, 1:17 pm, "[email protected]" <[email protected]> wrote: > We have bee using a custom webpart to display an interactive google > map for quite some time and it suddenly stopped working. We are > looking at fixing the existing webpart or migrating it to v3 but I was > not the original developer so i am not sure what is the best path. > > http://www.destinationoakland.com/parksandtrails/parks/addisonoaks/Pa... > > We have the link for every park and it used to be fully interactive. > > Any insight is much appreciated. I will continue my research. > > One thing that i have found is we are using the link
http://maps.google.com/maps?file=api&v=2&key=" + googleAPIKey + "&sensor=false This is in the v2 documentation: <script src="http://maps.google.com/maps? file=api&v=2&key=abcdefg&sensor=true_or_false" type="text/javascript"></script> See: http://code.google.com/apis/maps/documentation/javascript/v2/introduction.html > > But from some reading this link should not be valid and i should be > using http://www.google.com/jsapi?/maps?saddr=&v=2&key=" + googleAPIKey + > "&sensor=false Where did you see that? This looks like a bigger problem: <script src="http://maps.gstatic.com/intl/en_us/mapfiles/340c/ maps2.api/main.js" type="text/javascript"></script> (you shouldn't be manually including that, but I don't know if that is the problem) Your map code works if I copy it into a stand alone page, so it is some interaction with the rest of the page. -- Larry -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
