On Nov 2, 10:27 am, khadija ali <[email protected]> wrote: > hello, > i want to change this function ,i want when i geocode an adress ,i 'd > like to test the result of geocodage by the adress in my database > if the adress doesn't exist an alert of no result appear. > function searchLocations() { > var address = document.getElementById('addressInput').value; > geocoder.getLatLng(address, function(latlng) { > if (!latlng) { > alert(address + ' not found'); > } else { > searchLocationsNear(latlng); > } > }); > } > thanks for help
As I replied last time, "You've been a member of the group long enough to know that code listings are not appreciated or useful... Next time, please post a link." That hasn't changed. There isn't enough information in your post to help usefully; we can only guess what you mean. For interaction with your own database, you may find useful resources here: http://groups.google.com/group/google-maps-api/web/using-databases-with-gmaps-apps 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 -~----------~----~----~----~------~----~------~--~---
