Hello all,Has anyone noticed that the geocoder dijit using the default Esri World Geocoder returns duplicate candidates in the auto-suggest list? Is this a compound locator that is returning 1 candidate from two locators, perhaps?I'm not doing anything fancy. var geocoder = new esri.dijit.Geocoder({ map: map, autoComplete: true, arcgisGeocoder: { url: "http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer", name: "Esri World Geocoder", placeholder: "Find addresses", suffix: " Portland, OR", searchExtent: searchExtent, sourceCountry: "USA" } //geocoders: geocoders, //arcgisGeocoder: true }, "address"); geocoder.startup(); dojo.connect(geocoder, "onSelect", showR);
The function showR simply returns graphics for the result.You can view the app here: http://www.portlandbps.com/gis/solar/index.htmlI suggest 1900 sw 4th ave as the search string. You'll notice the duplicate suggestions.I'd like to either fix this or know that it's the expected behavior before I embed this map on our production site.Thanks, and looking forward to your thoughts