<?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: AGSMapViewDidEndZoomingNotification and AGSMapViewDidEndPanningNotification notifications replacement. in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46944#M427</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to add a KVO observer on the "navigating"&amp;nbsp;property:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;/** Specifies whether a pan or zoom animation is in progress.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt; @since 100&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt; */&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;@property&lt;/SPAN&gt;&lt;SPAN class=""&gt; (&lt;/SPAN&gt;&lt;SPAN class=""&gt;nonatomic&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;assign&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;readonly&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;getter&lt;/SPAN&gt;&lt;SPAN class=""&gt;=isNavigating) &lt;/SPAN&gt;&lt;SPAN class=""&gt;BOOL&lt;/SPAN&gt;&lt;SPAN class=""&gt; navigating;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Aug 2017 22:45:36 GMT</pubDate>
    <dc:creator>RyanOlson1</dc:creator>
    <dc:date>2017-08-09T22:45:36Z</dc:date>
    <item>
      <title>AGSMapViewDidEndZoomingNotification and AGSMapViewDidEndPanningNotification notifications replacement.</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46941#M424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;SPAN style="color: #333333; background-color: #ffffff; font-size: 14px;"&gt;AGSMapViewDidEndZoomingNotification&amp;nbsp;and&amp;nbsp;AGSMapViewDidEndPanningNotification&amp;nbsp;notifications have been removed.&amp;nbsp;&lt;SPAN&gt;To be informed when a user pans or zooms the maps, you can register a block with the&amp;nbsp;viewpointChangedHandler.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Is there any better way to track these removed notifications? Because for the&amp;nbsp;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;viewpointChangedHandler the comment says:&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Do not perform any heavy-lifting in this handler as it may adversely impact the rendering performance.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So I see that the&amp;nbsp;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;AGSMapViewDidEndZoomingNotification can be achieved probably by KVO observing of AGSMapView's mapScale property. What's about&amp;nbsp;&lt;SPAN&gt;AGSMapViewDidEndPanningNotification?&amp;nbsp;&lt;SPAN style="color: #3d3d3d; background-color: #f6f6f6;"&gt;viewpointChangedHandler notifies me every time but for me the final notification is enough and I don't see any easy way to learn when the viewpointChangedHandler fires the final notification.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 21:28:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46941#M424</guid>
      <dc:creator>NikolayYekimov1</dc:creator>
      <dc:date>2017-05-26T21:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: AGSMapViewDidEndZoomingNotification and AGSMapViewDidEndPanningNotification notifications replacement.</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46942#M425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;If you need to know when the user is done navigating on the map with interaction then&amp;nbsp;KVO on this property:&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;@property&lt;/SPAN&gt;&lt;SPAN class=""&gt; (&lt;/SPAN&gt;&lt;SPAN class=""&gt;nonatomic&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;assign&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;readonly&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;getter&lt;/SPAN&gt;&lt;SPAN class=""&gt;=isNavigating) &lt;/SPAN&gt;&lt;SPAN class=""&gt;BOOL&lt;/SPAN&gt;&lt;SPAN class=""&gt; navigating;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2017 21:46:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46942#M425</guid>
      <dc:creator>RyanOlson1</dc:creator>
      <dc:date>2017-05-26T21:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: AGSMapViewDidEndZoomingNotification and AGSMapViewDidEndPanningNotification notifications replacement.</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46943#M426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" class="" data-userid="168543" data-username="rolson-esristaff" href="https://community.esri.com/people/rolson-esristaff" style="color: #3778c7; background-color: #ffffff; border: 0px; font-weight: 200; text-decoration: underline; font-size: 1.286rem;"&gt;Ryan Olson&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually sometimes while dragging, pinch in and pinch out,&amp;nbsp;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;viewpointChangedHandler block executed multiple times but we need the last execution notification of this change handler. Can you please explain little bit regarding this. Actually i am using Arcgis runtime ios 100.1.0 and Objective C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff;"&gt;Your help is highly appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Jul 2017 10:22:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46943#M426</guid>
      <dc:creator>ManishSharma1</dc:creator>
      <dc:date>2017-07-31T10:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: AGSMapViewDidEndZoomingNotification and AGSMapViewDidEndPanningNotification notifications replacement.</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46944#M427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to add a KVO observer on the "navigating"&amp;nbsp;property:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;/** Specifies whether a pan or zoom animation is in progress.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt; @since 100&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt; */&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;@property&lt;/SPAN&gt;&lt;SPAN class=""&gt; (&lt;/SPAN&gt;&lt;SPAN class=""&gt;nonatomic&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;assign&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;readonly&lt;/SPAN&gt;&lt;SPAN class=""&gt;, &lt;/SPAN&gt;&lt;SPAN class=""&gt;getter&lt;/SPAN&gt;&lt;SPAN class=""&gt;=isNavigating) &lt;/SPAN&gt;&lt;SPAN class=""&gt;BOOL&lt;/SPAN&gt;&lt;SPAN class=""&gt; navigating;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Aug 2017 22:45:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/agsmapviewdidendzoomingnotification-and/m-p/46944#M427</guid>
      <dc:creator>RyanOlson1</dc:creator>
      <dc:date>2017-08-09T22:45:36Z</dc:date>
    </item>
  </channel>
</rss>

