I registered my site but I am still getting the error stating the api key is not for this site.
The site is https://gsd.ingenix.com/. The code I am using is listed below: <script src="http://maps.google.com/maps?file=api&v=2& &key="ABQIAAAAuUtgGjgcFFUJSM_NbHhNXBRPRHqzE6AkRYs2AvlnZcUsKtaJOxSQadNvqdG09XcopPv3Lk8PLwv68Q" type="text/javascript"></script> <div id="map" style="width: 500px; height: 400px"></div> <script type="text/javascript"> var map = new GMap2(document.getElementById("map")); var geocoder = new GClientGeocoder(); function showAddress(address) { if (geocoder) { geocoder.getLatLng(address, function(point) { if (!point) { alert(address + " not found"); } else { map.setCenter(point, 15); var marker = new GMarker(point); map.addOverlay(marker); map.openInfoWindowHtml(map.getCenter(), address); map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl()); map.checkResize(); } }); } } var firstTime=1; function displayMap (address) { showAddress(address); if(Number(firstTime) > 0 ) { firstTime = 0; showAddress(address); } } </script> --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
