Yea i just tried that with no luck here's the code. maybe i'm missing something.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Days of Yore Herb and Flower Farm</title> <script src="http://maps.google.com/maps? file=api&v=2&sensor=true&key=ABQIAAAA-1hptHrsf3SFEd7DEdofaRSgaYy5UsbQBWX1B8oCWf819_elUhRFKxuJwofTAYW4zUCtpbfb51PHRg" type="text/javascript"> </script> <script type="text/javascript"> function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map_canvas")); var center = new GLatLng(41.1541, -82.1578); map.setCenter(center, 13); var marker = new GMarker(center, {draggable: true}); GEvent.addListener(marker, "dragstart", function() { map.closeInfoWindow(); }); GEvent.addListener(marker, "dragend", function() { marker.openInfoWindowHtml("Best Flowers In Town"); }); map.addOverlay(marker); map.openInfoWindow(map.getCenter(), document.createTextNode("Days of Yore Herb and Flower Farm")); map.setUIToDefault(); } } </script> On Apr 10, 12:51 pm, Mike Williams <[email protected]> wrote: > Try removing space and line breaks from the line that contains the key. > > --http://econym.org.uk/gmap > The Blackpool Community Church Javascript Team script Team --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
