HI - I am having a problem with GClientGeocoder being NULL for some
users.  I don't get the error on my side though.  Some users had this
same problem a few months ago and I fixed it by hard coding code to
use Google maps version 2.82. But I don't know if that was a good
solution since I am running into the same problem.

The users are getting "Geocoder is null 2." as per code below.  Do you
know why this would happen only to some users? You can see the page at
http://duron.com/store_locator/index.asp?postal_code=20872

thanks in advance for any help!

   function searchLocations() {
     var address = document.getElementById('addressInput').value;
     if (geocoder) {
         geocoder.getLatLng(address, function(latlng) {
           if (!latlng) {
             alert(address + ' was not found.');
           } else {
             searchLocationsNear(latlng);
           }
         });
     } else {
        alert("Geocoder is null 2.");
     }
   }

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