<?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: Route always face up in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46253#M423</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah. It looks like you're interacting with the map view. When you do that, the autoPan mode is reset to &lt;STRONG&gt;.off&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use the autoPanModeChangeHandler to detect when that happens and either enable a button in your UI (remember to dispatch to main, since the handler could be invoked on any thread), or you could&amp;nbsp;switch the autoPan mode back again (perhaps after a delay). You'll need to think what you want your UX to be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;locationDisplay&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;autoPanModeChangedHandler &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;weak self&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; newMode &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; newMode &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;off &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        DispatchQueue&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;main&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;asyncAfter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;deadline&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;now&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; execute&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            self&lt;SPAN class="operator token"&gt;?&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;locationDisplay&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;autoPanMode &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;navigation
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could just set the interactionOptions appropriately:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;interactionOptions&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isPanEnabled &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;
mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;interactionOptions&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isRotateEnabled &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, which option you pick depends on the UX you want for your app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 21:48:51 GMT</pubDate>
    <dc:creator>Nicholas-Furness</dc:creator>
    <dc:date>2021-12-10T21:48:51Z</dc:date>
    <item>
      <title>Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46246#M416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #172b4d; background-color: #f4f5f7;"&gt;Set&lt;/SPAN&gt;&lt;STRONG style="background-color: #f4f5f7; color: #172b4d; "&gt; path mode:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #172b4d; background-color: #f4f5f7;"&gt;&lt;STRONG&gt;The direction that the user should be moving should be facing upward. This is similar to the way that driving apps do it. The map moves as the user moves along the route.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 13:14:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46246#M416</guid>
      <dc:creator>tejveer</dc:creator>
      <dc:date>2019-05-15T13:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46247#M417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set &lt;STRONG&gt;AGSLocationDisplay.&lt;A href="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_location_display.html#adceb51eab7fcc9d91070d1bc1235323c"&gt;autoPanMode&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;to &lt;STRONG&gt;&lt;A href="https://developers.arcgis.com/ios/latest/api-reference/_a_g_s_enumerations_8h.html#a8ecb72d65800db20fc891e215dd2f30f"&gt;.navigation&lt;/A&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The &lt;A href="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_location_display.html"&gt;location display&lt;/A&gt; can be found at &lt;STRONG&gt;AGSMapView.&lt;A href="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_map_view_common.html#acbc0b0e7e5fcae8e4d9dcbf94b3681ae"&gt;locationDisplay&lt;/A&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 May 2019 14:53:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46247#M417</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2019-05-15T14:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46248#M418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicholas Furness&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have set&amp;nbsp;&lt;SPAN style="background-color: #ffffff; border: 0px; font-weight: bold; font-size: 14px;"&gt;&lt;STRONG&gt;AGSLocationDisplay.&lt;/STRONG&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fios%2Flatest%2Fapi-reference%2Finterface_a_g_s_location_display.html%23adceb51eab7fcc9d91070d1bc1235323c" rel="nofollow" style="color: #287433; border: 0px; font-weight: inherit; text-decoration: none; font-size: 14px; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;autoPanMode&lt;/A&gt;&lt;STRONG&gt;&amp;nbsp;to&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN style="background-color: #ffffff; border: 0px; font-weight: bold; "&gt;&lt;A href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fdevelopers.arcgis.com%2Fios%2Flatest%2Fapi-reference%2F_a_g_s_enumerations_8h.html%23a8ecb72d65800db20fc891e215dd2f30f" rel="nofollow" style="color: #287433; border: 0px; font-weight: inherit; text-decoration: none; padding: 0px calc(12px + 0.35ex) 0px 0px;" target="_blank"&gt;.navigation&lt;/A&gt;&amp;nbsp;but not map moving according to user moved. i have used code given below.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; border: 0px; font-weight: bold; font-size: 14px; "&gt;please help me any suggestion. Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;override&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN class=""&gt;&lt;STRONG&gt;func&lt;/STRONG&gt;&lt;/SPAN&gt; viewDidLoad() &lt;STRONG&gt;{&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;super&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;viewDidLoad&lt;SPAN class=""&gt;()&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;locationDisplay&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;mapView&lt;SPAN class=""&gt;.&lt;/SPAN&gt;locationDisplay&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;autoPanMode&lt;SPAN class=""&gt; = &lt;/SPAN&gt;AGSLocationDisplayAutoPanMode&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;navigation&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;navigationPointHeightFactor&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;0.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;showAccuracy&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 12:19:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46248#M418</guid>
      <dc:creator>tejveer</dc:creator>
      <dc:date>2019-05-16T12:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46249#M419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you starting the location display with &lt;STRONG&gt;AGSLocationDisplay.start(completionHandler)&lt;/STRONG&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Be sure to check for an error in the completionHandler. Note that Apple insist you&amp;nbsp;provide certain keys in your info.plist if you wish to use location. See the note here:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_location_display.html" title="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_location_display.html"&gt;ArcGIS Runtime SDK for iOS: AGSLocationDisplay Class Reference&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;The default location datasource, &lt;CODE&gt;&lt;A href="https://developers.arcgis.com/ios/latest/api-reference/interface_a_g_s_c_l_location_data_source.html" style="color: #7a6045; font-weight: bold;" title="A datasource for AGSLocationDisplay based on Core Location. "&gt;AGSCLLocationDataSource&lt;/A&gt;&lt;/CODE&gt;, needs the app to be authorized in order to access the device's location. The app's Info.plist must contain appropriate purpose strings (&lt;CODE&gt;NSLocationWhenInUseUsageDescription&lt;/CODE&gt;, &lt;CODE&gt;NSLocationAlwaysUsageDescription&lt;/CODE&gt;, or &lt;CODE&gt;NSLocationAlwaysAndWhenInUseUsageDescription&lt;/CODE&gt; keys) to permit this functionality. When the datasource is started it will attempt to request when-in-use authorization if the app's authorization status is not determined, otherwise it will reuse the authorization that has already been granted. If authorization is denied, location updates will not be available.&lt;/BLOCKQUOTE&gt;&lt;P&gt;See also the &lt;A href="https://github.com/Esri/arcgis-runtime-samples-ios/blob/85ba2bad2a17945c9a95da22175a9f3717b17e35/arcgis-ios-sdk-samples/Maps/Display%20device%20location/DisplayLocationSettingsViewController.swift#L101-L105"&gt;Display Location sample&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 12:35:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46249#M419</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2019-05-16T12:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46250#M420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;Are you starting the location display with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG style="background-color: #ffffff; border: 0px; font-weight: bold; font-size: 14px;"&gt;AGSLocationDisplay.start(completionHandler)&lt;/STRONG&gt;&lt;SPAN style="background-color: #ffffff;"&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; "&gt;I am using this code in our application..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; "&gt;please check this code.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt; &lt;/SPAN&gt;&lt;EM&gt;//Set up location listener and show user's location on map&lt;/EM&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;self&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;mapView&lt;SPAN class=""&gt;.&lt;/SPAN&gt;locationDisplay&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;autoPanMode&lt;SPAN class=""&gt; = &lt;/SPAN&gt;AGSLocationDisplayAutoPanMode&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;navigation&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;navigationPointHeightFactor&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;0.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;showAccuracy&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;true&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=""&gt;locationDisplay&lt;/SPAN&gt;.&lt;SPAN class=""&gt;start&lt;/SPAN&gt; { (error:&lt;SPAN class=""&gt;Error&lt;/SPAN&gt;?) -&amp;gt; &lt;SPAN class=""&gt;Void&lt;/SPAN&gt; &lt;SPAN class=""&gt;in&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=""&gt;if&lt;/SPAN&gt; &lt;SPAN class=""&gt;let&lt;/SPAN&gt; error = error {&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class=""&gt;debugPrint&lt;/SPAN&gt;(error.&lt;SPAN class=""&gt;localizedDescription&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;self&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;locationDisplay&lt;SPAN class=""&gt;.&lt;/SPAN&gt;locationChangedHandler&lt;SPAN class=""&gt; = &lt;/SPAN&gt;&lt;SPAN class=""&gt;self&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;SPAN class=""&gt;locationChanged&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 13:19:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46250#M420</guid>
      <dc:creator>tejveer</dc:creator>
      <dc:date>2019-05-16T13:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46251#M421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you provide more details please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're seeing the blue dot on the map, and you see the dot moving, but the map isn't orienting itself properly? Perhaps a video or a screenshot would help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What version of Runtime are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 14:57:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46251#M421</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2019-05-16T14:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46252#M422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;W&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6162657698001w320h240r8" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6162657698001" data-account="6161463677001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6161463677001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6162657698001w320h240r8');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.esri.com/t5/video/gallerypage/video-id/6162657698001"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;e are able to seen blue dot as well as moving on the map but not moving map automatically during user navigate. and i have shared video with code snippet given below.please help me. thanks in advance.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;override&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;func&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;viewDidLoad() {&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;super&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;viewDidLoad&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;()&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;locationDisplay&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;self&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;mapView&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;locationDisplay&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;autoPanMode&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;AGSLocationDisplayAutoPanMode&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;navigation&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;navigationPointHeightFactor&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;0.5&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;locationDisplay&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;.&lt;/SPAN&gt;showAccuracy&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;locationDisplay&lt;/SPAN&gt;.&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;start&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;{ (error:&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;Error&lt;/SPAN&gt;?) -&amp;gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;Void&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;in&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="" style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;let&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;error = error {&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="" style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;debugPrint&lt;/SPAN&gt;(error.&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;localizedDescription&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="" style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="" style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;self&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;.&lt;/SPAN&gt;locationDisplay&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;.&lt;/SPAN&gt;locationChangedHandler&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;=&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;self&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;locationChanged&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="" style="background-color: #ffffff; border: 0px; font-weight: 400;"&gt;&lt;STRONG style="border: 0px; font-weight: bold;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;}&lt;/STRONG&gt;&lt;/P&gt;&lt;P class="" style="border: 0px; font-size: 14px;"&gt;&lt;SPAN class="" style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2019 14:18:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46252#M422</guid>
      <dc:creator>tejveer</dc:creator>
      <dc:date>2019-06-03T14:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Route always face up</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46253#M423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah. It looks like you're interacting with the map view. When you do that, the autoPan mode is reset to &lt;STRONG&gt;.off&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use the autoPanModeChangeHandler to detect when that happens and either enable a button in your UI (remember to dispatch to main, since the handler could be invoked on any thread), or you could&amp;nbsp;switch the autoPan mode back again (perhaps after a delay). You'll need to think what you want your UX to be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;locationDisplay&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;autoPanModeChangedHandler &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;weak self&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; newMode &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; newMode &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;off &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        DispatchQueue&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;main&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;asyncAfter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;deadline&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;now&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; execute&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            self&lt;SPAN class="operator token"&gt;?&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;locationDisplay&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;autoPanMode &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;navigation
        &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could just set the interactionOptions appropriately:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;interactionOptions&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isPanEnabled &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;
mapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;interactionOptions&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isRotateEnabled &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, which option you pick depends on the UX you want for your app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 21:48:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/route-always-face-up/m-p/46253#M423</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2021-12-10T21:48:51Z</dc:date>
    </item>
  </channel>
</rss>

