<?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 Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685129#M17621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm looking to use this ESRI sample &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#AddressToLocation"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#AddressToLocation&lt;/A&gt;&lt;SPAN&gt; and I would like to make a modification to the Address Finder.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In essence, all I need to have is a single input parameter (Address).&amp;nbsp; I've been playing around with the code for a while now and have yet to successfully manipulate the C# side of things.&amp;nbsp; On the xaml side i've removed all but the Address text boxes.&amp;nbsp; What needs to be done on the C# side of things to get this modification to work?&amp;nbsp; When I comment out all but the Address IF statements, the tool does not work.&amp;nbsp; I'm guessing it's more than&amp;nbsp; just removing those additional parameters (City, State, Zip).&amp;nbsp; Any help would be awesome.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2012 11:38:13 GMT</pubDate>
    <dc:creator>danielchaboya</dc:creator>
    <dc:date>2012-09-20T11:38:13Z</dc:date>
    <item>
      <title>Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685129#M17621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm looking to use this ESRI sample &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#AddressToLocation"&gt;http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#AddressToLocation&lt;/A&gt;&lt;SPAN&gt; and I would like to make a modification to the Address Finder.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In essence, all I need to have is a single input parameter (Address).&amp;nbsp; I've been playing around with the code for a while now and have yet to successfully manipulate the C# side of things.&amp;nbsp; On the xaml side i've removed all but the Address text boxes.&amp;nbsp; What needs to be done on the C# side of things to get this modification to work?&amp;nbsp; When I comment out all but the Address IF statements, the tool does not work.&amp;nbsp; I'm guessing it's more than&amp;nbsp; just removing those additional parameters (City, State, Zip).&amp;nbsp; Any help would be awesome.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 11:38:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685129#M17621</guid>
      <dc:creator>danielchaboya</dc:creator>
      <dc:date>2012-09-20T11:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685130#M17622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;In essence, all I need to have is a single input parameter (Address). &lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use the 'Full address' field of the address &lt;/SPAN&gt;&lt;A href="http://tasks.arcgisonline.com/ArcGIS/rest/services/Locators/TA_Streets_US_10/GeocodeServer/findAddressCandidates" rel="nofollow noopener noreferrer" target="_blank"&gt;locator&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the REST API this field is called 'Simple Line Input', so code like :&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="color:#2b91af;"&gt;Dictionary&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color:blue;"&gt;string&lt;/SPAN&gt;, &lt;SPAN style="color:blue;"&gt;string&lt;/SPAN&gt;&amp;gt; address = addressParams.Address;
address.Add(&lt;SPAN style="color:#a31515;"&gt;"Single Line Input"&lt;/SPAN&gt;, &lt;SPAN style="color:#a31515;"&gt;"400 Market Street, San Francisco, CA, 94111"&lt;/SPAN&gt;);
_locatorTask.AddressToLocationsAsync(addressParams);
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;returns the expected location.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 04:49:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685130#M17622</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2021-12-12T04:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685131#M17623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the reply Dominique.&amp;nbsp; I found a solution.&amp;nbsp; I was using the wrong name for my address field.&amp;nbsp; I kept using the name that is used for the ESRI geocoder, which is different than mine&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2012 16:59:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685131#M17623</guid>
      <dc:creator>danielchaboya</dc:creator>
      <dc:date>2012-09-20T16:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685132#M17624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Dominique, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am attempting to do the same thing however we cant get the single line working. Our geocoding service is the NA composite locator that comes with 10.1 and I built the app using the &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/silverlight-api/samples/start.htm#AddressToLocation"&gt;Find Address Sample&lt;/A&gt;&lt;SPAN&gt;. I added a singleLine text field and I'm using the same syntax you recommend &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;address.Add("Single Line Input", "400 Market Street, San Francisco, CA, 94111");&lt;/PRE&gt;&lt;SPAN&gt;. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However the geocoder doesnt seem to respond. it works still for the seperated Street, City, State, Zip fields. But not when I simply specify the single line option. The Single Line query works directly on the Rest Services Directory for the locator though. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I follow the Find Address Sample, is there anything else that must be changed or altered to use the single line option, perhaps in the AddresstoLocationsCompleted method?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2013 15:28:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685132#M17624</guid>
      <dc:creator>gabrielvazquez</dc:creator>
      <dc:date>2013-08-01T15:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685133#M17625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does your locator service accept a 'Full Address' as this one: &lt;/SPAN&gt;&lt;A href="http://tasks.arcgisonline.com/ArcGIS/rest/services/Locators/TA_Streets_US_10/GeocodeServer/findAddressCandidates"&gt;http://tasks.arcgisonline.com/ArcGIS/rest/services/Locators/TA_Streets_US_10/GeocodeServer/findAddressCandidates?&lt;BR /&gt;&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2013 15:34:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685133#M17625</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2013-08-01T15:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using Geocoder in Silverlight Web Map ... Slight Manipulation to Sample</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685134#M17626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The one we are using nearly identical to this one. &lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://tasks.arcgisonline.com/ArcGIS/rest/services/Locators/TA_Address_NA_10/GeocodeServer/findAddressCandidates?Address=&amp;amp;City=&amp;amp;State=&amp;amp;Zip=&amp;amp;Zip4=&amp;amp;Country=&amp;amp;SingleLine=Fort+Meade&amp;amp;outFields=&amp;amp;outSR=&amp;amp;f=html"&gt;http://tasks.arcgisonline.com/ArcGIS/rest/services/Locators/TA_Address_NA_10/GeocodeServer/findAddressCandidates?Address=&amp;amp;City=&amp;amp;State=&amp;amp;Zip=&amp;amp;Zip4=&amp;amp;Country=&amp;amp;SingleLine=Fort+Meade&amp;amp;outFields=&amp;amp;outSR=&amp;amp;f=html&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2013 17:09:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/using-geocoder-in-silverlight-web-map-slight/m-p/685134#M17626</guid>
      <dc:creator>gabrielvazquez</dc:creator>
      <dc:date>2013-08-01T17:09:06Z</dc:date>
    </item>
  </channel>
</rss>

