<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Comprehensive Locator documentation in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297017#M27312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, John! That does help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Aaron&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 May 2014 13:49:07 GMT</pubDate>
    <dc:creator>AaronAllen</dc:creator>
    <dc:date>2014-05-12T13:49:07Z</dc:date>
    <item>
      <title>Comprehensive Locator documentation</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297015#M27310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am using the Report Streetlight Problem JavaScript app and want to search for a location based on address, intersection, or point of interest. I can get it to do the first two or the last but not all three. I've looked at Locator under the Javascript API (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javasc...cator-amd.html" rel="nofollow" target="_blank"&gt;https://developers.arcgis.com/javasc...cator-amd.html&lt;/A&gt;&lt;SPAN&gt;) and the REST API Help for Single Input Geocoding (&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/...0000015000000/" rel="nofollow" target="_blank"&gt;http://resources.arcgis.com/en/help/...0000015000000/&lt;/A&gt;&lt;SPAN&gt;) but neither fully documents some of the properties. Below are the Locator properties from the config.js file:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Locators: [{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DisplayText: "Address",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DefaultValue: "400 Silver Avenue SW, Albuquerque, NM 87102",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LocatorParamaters: ["SingleLine"],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;LocatorURL: "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer" rel="nofollow" target="_blank"&gt;http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer&lt;/A&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CandidateFields: "Loc_name, Score, Match_addr", //orig&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DisplayField: "${Match_addr}",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ZoomLevel: 7,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AddressMatchScore: 80,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LocatorDefaultRequest: "1",&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LocatorFieldName: 'Loc_name',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LocatorFieldValues: ["USA.StreetName", "USA.PointAddress", "USA.StreetAddress"]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm pretty sure I need to modify CandidateFields and LocatorFieldValues and possibly LocatorFieldName but I can't find any documentation for them. Can anybody provide some so I know what the possible property values are?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Aaron Allen&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Albuquerque, NM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 19:10:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297015#M27310</guid>
      <dc:creator>AaronAllen</dc:creator>
      <dc:date>2014-05-08T19:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Comprehensive Locator documentation</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297016#M27311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi Aaron,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i think the reason you're having a hard time finding documentation on this topic is because its a convention thats related to the REST spec for geocoding services, but also kind of peculiar to local government templates.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CandidateFields refers to the fields returned for individual results.&amp;nbsp; You set this to get control over what attributes are present in your results.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;LocatorFieldValues refers to the name of the individual locator a candidate was located by (since the service is a composite).&amp;nbsp; I believe that setting this property allows you to restrict individual locators that you want to consider results from.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;here's a sample JSON request that uses 'outFields=*' to show all the available attributes: &lt;/SPAN&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/find?text=Washington&amp;amp;outFields=*&amp;amp;f=pjson" rel="nofollow" target="_blank"&gt;http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer/find?text=Washington&amp;amp;outFields=*&amp;amp;f=pjson&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;hope that helps!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2014 20:37:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297016#M27311</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-05-09T20:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Comprehensive Locator documentation</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297017#M27312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks, John! That does help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Aaron&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2014 13:49:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/comprehensive-locator-documentation/m-p/297017#M27312</guid>
      <dc:creator>AaronAllen</dc:creator>
      <dc:date>2014-05-12T13:49:07Z</dc:date>
    </item>
  </channel>
</rss>

