On Apr 1, 11:00 am, Rossko <[email protected]> wrote: > I would guess you've been blacklisted for 'inappropriate content'
I don't think it's that -- although Google may think it's inappropriate. I think the problem is the way the script tag is built: <script src="http://maps.google.com/maps?file=api&v=2.x&key=" & HMGoogleMapsKey & """ type="text/javascript"></script> You can't build an HTML tag that way: you are specifying six attributes to your <script> tag: - src="http://maps.google.com/maps?file=api&v=2.x&key=" - &="" - HMGoogleMapsKey="" - &="" - ""="" - type="text/javascript" If you need a variable key, then use Michael Geary's elegant solution at http://groups.google.com/group/google-maps-api/browse_thread/thread/c804b74034915665. There's no point in keeping it a secret because no-one else can use yours. -- You received this message because you are subscribed to the Google Groups "Google Maps API" 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.
