<?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: Popup info in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448803#M3829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should get needed information from AGSField's (feature layer's fields property) domain property.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Nov 2012 23:00:45 GMT</pubDate>
    <dc:creator>NimeshJarecha</dc:creator>
    <dc:date>2012-11-02T23:00:45Z</dc:date>
    <item>
      <title>Popup info</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448802#M3828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In my feature layer I have domains. In the feature callout , the title is showing coded value. How can I show the coded value label as the title.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 15:10:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448802#M3828</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-11-02T15:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Popup info</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448803#M3829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You should get needed information from AGSField's (feature layer's fields property) domain property.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Nimesh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Nov 2012 23:00:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448803#M3829</guid>
      <dc:creator>NimeshJarecha</dc:creator>
      <dc:date>2012-11-02T23:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Popup info</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448804#M3830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am not sure if I understood this step. Is it something I need to set when setting featureLayer.outFields = [NSArray arrayWithObject:@"*"];&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2012 13:11:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448804#M3830</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-11-05T13:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Popup info</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448805#M3831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi vikrant327,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;could you post some code how you create the callouts with your feature layer? (I need that for my project too and maybe I could help you with that.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Some hints:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you access a featureSet on you feature layer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If thats possible you could get the contents of the layer like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
for(int i = 0; i &amp;lt; [featureSet.features count]; i++) {
AGSGraphic *feature = [inFeatureSet.features objectAtIndex:i];
String *content = [feature.attributes valueForKey:@"PUT HERE THE NAME OF THE CONTENT YOU WANT"];
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:03:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448805#M3831</guid>
      <dc:creator>PhilippFauser</dc:creator>
      <dc:date>2021-12-11T20:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Popup info</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448806#M3832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Philip,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am doing everything simple as given in &lt;/SPAN&gt;&lt;A href="http://resources.arcgis.com/en/help/runtime-ios-sdk/concepts/index.html#/Displaying_a_Callout/00pw0000004t000000/"&gt;http://resources.arcgis.com/en/help/runtime-ios-sdk/concepts/index.html#/Displaying_a_Callout/00pw0000004t000000/&lt;/A&gt;&lt;SPAN&gt; . Simple adding the feature layer with all the attributes in the outFields to the map and calling shouldShowCalloutForGraphic: and mapView didShowCalloutForGraphic:&amp;nbsp; methods&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Nov 2012 15:05:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/popup-info/m-p/448806#M3832</guid>
      <dc:creator>VIKRANTKRISHNA</dc:creator>
      <dc:date>2012-11-14T15:05:56Z</dc:date>
    </item>
  </channel>
</rss>

