### Eclipse Workspace Patch 1.0 #P d1_mercury_ui Index: src/main/webapp/mfbase/openlayers/Geocoder.js =================================================================== --- src/main/webapp/mfbase/openlayers/Geocoder.js (revision 8333) +++ src/main/webapp/mfbase/openlayers/Geocoder.js (working copy) @@ -21,7 +21,7 @@ OpenLayers.Control.prototype.initialize.apply(this, [options]); try { - this.geocoder = new GClientGeocoder(); + this.geocoder = new google.maps.Geocoder(); } catch(err) { OpenLayers.Console.error("GClientGeocoder not available", err); } @@ -66,7 +66,7 @@ } }, this); - this.geocoder.getLatLng(address, bound); + this.geocoder.geocode({"address":address}, bound); }, CLASS_NAME: "OpenLayers.Control.Geocoder"