<?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: Is there a getSamples equivalent on a AGSRasterLayer for the iOS SDK? in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231828#M7517</link>
    <description>&lt;P&gt;Hey, there's one other thing you can do, if "Identify" doesn't meet your needs. &amp;nbsp;You can&lt;SPAN&gt;&amp;nbsp;use the "AGSJSONRequestOperation" class to make the REST API request for "getSampes" yourself. &amp;nbsp;The REST API for that is &lt;A href="https://developers.arcgis.com/rest/services-reference/enterprise/get-samples.htm" target="_self"&gt;here&lt;/A&gt;. &amp;nbsp;The class doc is &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_j_s_o_n_request_operation.html" target="_self"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
    <pubDate>Tue, 15 Nov 2022 16:55:02 GMT</pubDate>
    <dc:creator>MarkDostal</dc:creator>
    <dc:date>2022-11-15T16:55:02Z</dc:date>
    <item>
      <title>Is there a getSamples equivalent on a AGSRasterLayer for the iOS SDK?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1230798#M7512</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I need to duplicate some functionality from a javascript project we have using the getSamples method on a imagerylayer in iOS and I have been unable to locate a similar operation on the&amp;nbsp;&lt;SPAN&gt;AGSRasterLayer. Is this supported at all, maybe a different path that&amp;nbsp;isn't so clear?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 08:06:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1230798#M7512</guid>
      <dc:creator>frankm</dc:creator>
      <dc:date>2022-11-11T08:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a getSamples equivalent on a AGSRasterLayer for the iOS SDK?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231776#M7516</link>
      <description>&lt;P&gt;Hello, and thank you for your question! &amp;nbsp;The "getSamples" method is not supported, but "Identify" is. &amp;nbsp;"Identify" is similar to "getSamples", but not quite the same. &amp;nbsp;Here's a snippet of the doc from "AGSRasterLayer": &amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Each raster layer supports identify on its individual cells when it is displayed in an @c AGSMapView or @c AGSSceneView.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;You can use one of the "Identify" methods on the "&lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_geo_view.html" target="_self"&gt;AGSGeoView&lt;/A&gt;".&lt;/P&gt;&lt;P&gt;Let us know if you have more questions.&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 16:03:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231776#M7516</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2022-11-15T16:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a getSamples equivalent on a AGSRasterLayer for the iOS SDK?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231828#M7517</link>
      <description>&lt;P&gt;Hey, there's one other thing you can do, if "Identify" doesn't meet your needs. &amp;nbsp;You can&lt;SPAN&gt;&amp;nbsp;use the "AGSJSONRequestOperation" class to make the REST API request for "getSampes" yourself. &amp;nbsp;The REST API for that is &lt;A href="https://developers.arcgis.com/rest/services-reference/enterprise/get-samples.htm" target="_self"&gt;here&lt;/A&gt;. &amp;nbsp;The class doc is &lt;A href="https://developers.arcgis.com/ios/api-reference/interface_a_g_s_j_s_o_n_request_operation.html" target="_self"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 16:55:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231828#M7517</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2022-11-15T16:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a getSamples equivalent on a AGSRasterLayer for the iOS SDK?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231852#M7518</link>
      <description>&lt;P&gt;Aha! I have actually started to implement the getSamples using the REST API but I will explore the identify later, just made some codable structs and it would be a shame to not try it out &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 17:13:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231852#M7518</guid>
      <dc:creator>frankm</dc:creator>
      <dc:date>2022-11-15T17:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a getSamples equivalent on a AGSRasterLayer for the iOS SDK?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231871#M7519</link>
      <description>&lt;P&gt;Ha ha ha, yea codable structs are pretty cool. &amp;nbsp;If you need any more help or have questions, feel free to reach out!&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Tue, 15 Nov 2022 17:45:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/is-there-a-getsamples-equivalent-on-a/m-p/1231871#M7519</guid>
      <dc:creator>MarkDostal</dc:creator>
      <dc:date>2022-11-15T17:45:17Z</dc:date>
    </item>
  </channel>
</rss>

