<?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: Using PopUp to display FeatureLayer information with Xamarin.Forms in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475994#M5859</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get to the popup on all/any layers for a tapped location , you will have to call&amp;nbsp;MapView.IdentifyLayersAsync(),or you can call MapView.IdentifyLayerAsync&amp;nbsp;to get info for&amp;nbsp;a specific layer. The result of Identify "IdentifyLayerResult" has Popups property that will return popup info on&amp;nbsp;a layer(s).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Side note, if layer has sublayers then you would need to get the SublayerResults and then check for popups for that sublayer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to give an idea I quickly typed following code to demonstrate how to get the popup from a featurelayer. This is not a functional code. Let me know if you still have problems and I will put together a quick sample.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: small; font-family: Consolas;"&gt;IReadOnlyList&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: small; font-family: Consolas;"&gt;IdentifyLayerResult&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;gt; results = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;await&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; MyMapView.IdentifyLayersAsync(Position, tolerance, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;false&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;,Features);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-family: Consolas; font-size: small;"&gt;IdentifyLayerResult&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; identifyLayerResult &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; results)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; (identifyLayerResult.Error != &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;//Display error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;else&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (identifyLayerResult.Popups?.Count &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;//Get the popup for geoelement&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: medium; font-family: Helvetica;"&gt;var ge=identifyLayerResult.Popups[0].GeoElement;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: medium; font-family: Helvetica;"&gt;//get attributes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-family: Consolas; font-size: small;"&gt;KeyValuePair&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;object&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;&amp;gt; element &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; ge.Attributes)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;// do something&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;else&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (identifyLayerResult.SublayerResults?.Count &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; sublayer &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; identifyLayerResult.SublayerResults)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (sublayer.Popups?.Count &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;//&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;//Get the popup from sublayer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;var sublayerGE=&lt;/SPAN&gt;(sr.Popups[0].GeoElement);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Dec 2016 18:17:02 GMT</pubDate>
    <dc:creator>PreetiMaske</dc:creator>
    <dc:date>2016-12-13T18:17:02Z</dc:date>
    <item>
      <title>Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475991#M5856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am&amp;nbsp;trying to display information from a feature layer using PopUp.&lt;/P&gt;&lt;P&gt;I am using the&amp;nbsp;Esri.ArcGISRuntime.Xamarin.Forms nuget package.&lt;/P&gt;&lt;P&gt;I saw that you can specifiy a&amp;nbsp;PopupDefinition on the&amp;nbsp;FeatureLayer but how to display information on the MapView.&lt;/P&gt;&lt;P&gt;I'd like to open a popup when a user click on a feature but did not find any sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 30 Oct 2016 22:33:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475991#M5856</guid>
      <dc:creator>ThomasVercoutre</dc:creator>
      <dc:date>2016-10-30T22:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475992#M5857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you end up finding a solution to this? &amp;nbsp;I am having a similar issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2016 19:11:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475992#M5857</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2016-12-01T19:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475993#M5858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry did not find any solution for the moment. Not sure if pop up is supported for the moment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 23:27:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475993#M5858</guid>
      <dc:creator>ThomasVercoutre</dc:creator>
      <dc:date>2016-12-12T23:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475994#M5859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get to the popup on all/any layers for a tapped location , you will have to call&amp;nbsp;MapView.IdentifyLayersAsync(),or you can call MapView.IdentifyLayerAsync&amp;nbsp;to get info for&amp;nbsp;a specific layer. The result of Identify "IdentifyLayerResult" has Popups property that will return popup info on&amp;nbsp;a layer(s).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Side note, if layer has sublayers then you would need to get the SublayerResults and then check for popups for that sublayer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to give an idea I quickly typed following code to demonstrate how to get the popup from a featurelayer. This is not a functional code. Let me know if you still have problems and I will put together a quick sample.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: small; font-family: Consolas;"&gt;IReadOnlyList&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-size: small; font-family: Consolas;"&gt;IdentifyLayerResult&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;gt; results = &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;await&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; MyMapView.IdentifyLayersAsync(Position, tolerance, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;false&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;,Features);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-family: Consolas; font-size: small;"&gt;IdentifyLayerResult&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; identifyLayerResult &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; results)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; (identifyLayerResult.Error != &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;null&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;//Display error&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;else&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (identifyLayerResult.Popups?.Count &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;//Get the popup for geoelement&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: medium; font-family: Helvetica;"&gt;var ge=identifyLayerResult.Popups[0].GeoElement;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: medium; font-family: Helvetica;"&gt;//get attributes&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #2b91af; font-family: Consolas; font-size: small;"&gt;KeyValuePair&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;object&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;&amp;gt; element &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; ge.Attributes)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;// do something&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;else&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (identifyLayerResult.SublayerResults?.Count &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;foreach&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; sublayer &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;in&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; identifyLayerResult.SublayerResults)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt; (sublayer.Popups?.Count &amp;gt; 0)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;//&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;//Get the popup from sublayer&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;var sublayerGE=&lt;/SPAN&gt;(sr.Popups[0].GeoElement);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2016 18:17:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475994#M5859</guid>
      <dc:creator>PreetiMaske</dc:creator>
      <dc:date>2016-12-13T18:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475995#M5860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, but how do I display the pop-up ? I don't need to get the pop-up &amp;nbsp;to iterate through the attributes (I can just query the feature).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 20:25:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475995#M5860</guid>
      <dc:creator>ThomasVercoutre</dc:creator>
      <dc:date>2016-12-19T20:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475996#M5861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Displaying pop-up info is app logic and is left to&amp;nbsp;app developer to decide and design how that info is displayed&amp;nbsp;(e.g. custom&amp;nbsp;UI control, a MapOverlay ). ArcGIS Runtime SDK for Dotnet API or Toolkit does not have&amp;nbsp;any out-of-the-box&amp;nbsp;UI control for displaying Pop-up control yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Preeti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 21:38:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475996#M5861</guid>
      <dc:creator>PreetiMaske</dc:creator>
      <dc:date>2016-12-19T21:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475997#M5862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Preeti,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that it was not a priority for the first release.&lt;/P&gt;&lt;P&gt;But it is confusing because we have access to this popup class but we can't do anything with it. Using target specific SDK (Android, iOS, old .Net), there are some `&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;PopupContainer` or `PopUpManager` classes that can be used to display popups.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;It&amp;nbsp;would be great to update the release notes to explain this because I lost few hours to try to figure out how to display popup using the SDK.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;Anyway, the SDK is great &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;Thomas.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2016 21:59:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475997#M5862</guid>
      <dc:creator>ThomasVercoutre</dc:creator>
      <dc:date>2016-12-19T21:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475998#M5863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also spent hours in search for sample code to display pop-up on the MapViewer. It seems to me this is a very fundamental and essential function of the MapViwer.&amp;nbsp; Hopefully ESRI can quickly put up sample for how to display pop-up that already defined in a webmap&amp;nbsp;and layer for a MapViewer.&lt;/P&gt;&lt;P&gt;Agree: the SDK is great!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ming&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 14:57:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475998#M5863</guid>
      <dc:creator>MarkBennett</dc:creator>
      <dc:date>2017-02-24T14:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using PopUp to display FeatureLayer information with Xamarin.Forms</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475999#M5864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/message/665336-popups-in-arcgis-runtime-sdk-for-net?q=popup"&gt;https://community.esri.com/message/665336-popups-in-arcgis-runtime-sdk-for-net?q=popup&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2017 16:16:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/using-popup-to-display-featurelayer-information/m-p/475999#M5864</guid>
      <dc:creator>ChadYoder1</dc:creator>
      <dc:date>2017-02-24T16:16:39Z</dc:date>
    </item>
  </channel>
</rss>

