On Feb 25, 1:36 pm, "[email protected]"
<[email protected]> wrote:
> I'm developing a custom control in Umbraco which has a Google Map
> element on it. When the page loads I get the this api is registered
> under another site warning.
>
> Ple\ase see:http://www.sentricmusic.co.uk/ViewGoogleMap.aspx
>
> However I know this is not the case, the key is registered 
> underwww.sentricmusic.co.uk.

It's FrontPage syndrome. If you correctly use &amp; in your script
tag, FrontPage will see the & character and replace it with &amp;
without checking to see if you've already done that. Your script tag
starts like
  http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=
which is nonsense.

The fix is either not to use FrontPage (or whatever editor you are
using) or to use file=api&v=2 etc so that the & becomes &amp;

Andrew
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to