<?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: Offline Navigation in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288921#M6042</link>
    <description>&lt;P&gt;Thank you Hudson! This solve my question!&lt;/P&gt;</description>
    <pubDate>Sun, 14 May 2023 01:59:53 GMT</pubDate>
    <dc:creator>LeoDeng</dc:creator>
    <dc:date>2023-05-14T01:59:53Z</dc:date>
    <item>
      <title>Offline Navigation</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1287556#M6030</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;We do expect the device to have internet connection the majority of the time, but it is still not perfect.&lt;/P&gt;&lt;P&gt;We often went to the mountains where there was (and still) no Cell Reception in parts of the road. That is why Offline Navigation would be important. There is some functionality that allows ArcGIS Online to be loaded into the device for offline use (&lt;A href="https://developers.arcgis.com/documentation/mapping-apis-and-services/offline/" target="_self"&gt;Build offline applications | Documentation | ArcGIS Developers&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;A couple of goals of this functionality would be:&lt;BR /&gt;• Correction when user goes off path (respecting point/polyline/polygon barriers)&lt;BR /&gt;• Generation of directions when user adds or removes a stop (respecting point/polyline/polygon barriers)&lt;/P&gt;&lt;P&gt;Is it possible to solve these issues by ArcGIS Online routing and geocoding service in ArcGIS Runtime API for Android?&lt;/P&gt;&lt;P&gt;Bests,&lt;BR /&gt;Leo&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 05:59:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1287556#M6030</guid>
      <dc:creator>LeoDeng</dc:creator>
      <dc:date>2023-05-10T05:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Offline Navigation</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1287596#M6031</link>
      <description>&lt;P&gt;Hi Leo,&lt;BR /&gt;&lt;BR /&gt;I believe the Runtime SDK for Android supports all of your use cases for offline navigation. Please have a look at these samples for versions 100.x of the SDK:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/blob/main/kotlin/offline-geocode/README.md" target="_blank" rel="noopener"&gt;Offline Geocode&lt;/A&gt; demonstrates how to geocode and reverse-geocode addresses&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/blob/main/kotlin/offline-routing/README.md" target="_self"&gt;Offline Routing&lt;/A&gt; demonstrates how to generate routes between locations offline, including real-time changes to routes&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/blob/main/kotlin/navigate-route/README.md" target="_self"&gt;Navigate Route&lt;/A&gt; demonstrates how to use a `LocationDataSource` with a route to correct for errors when navigating along streets.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Please note this functionality is also available in the newer 200.1 ArcGIS Maps SDK for Kotlin:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/tree/main/geocode-offline" target="_blank" rel="noopener"&gt;Offline Geocode&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://github.com/Esri/arcgis-maps-sdk-kotlin-samples/tree/main/navigate-route" target="_self"&gt;Navigate Route&lt;/A&gt;, which demonstrates how to use navigation with an online service. There is currently no sample to demonstrate offline routing in the Kotlin SDK, but &lt;A href="https://developers.arcgis.com/kotlin/api-reference/arcgis-maps-kotlin/com.arcgismaps.tasks.networkanalysis/-route-task/index.html?query=class%20RouteTask%20:%20ApiKeyResource,%20Loadable,%20Resourceable" target="_self"&gt;RouteTask&lt;/A&gt; still supports local geodatabases.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Please also see &lt;A href="https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-to-generate-route-url-online-and-offline-in/m-p/1184920/highlight/true#M5787" target="_self"&gt;this post&lt;/A&gt; for further help on creating your own routing service.&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 09:28:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1287596#M6031</guid>
      <dc:creator>HudsonMiears</dc:creator>
      <dc:date>2023-05-10T09:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Offline Navigation</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288009#M6037</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/526455"&gt;@HudsonMiears&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Thank you for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; 1. In the&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/blob/main/kotlin/offline-geocode/README.md" target="_blank" rel="noopener nofollow noreferrer"&gt;Offline Geocode&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;demonstrates, there is a offline data required first. Ant it's &lt;A href="https://www.arcgis.com/home/item.html?id=3424d442ebe54f3cbf34462382d3aebe" target="_blank" rel="nofollow noopener"&gt;San Diego&lt;/A&gt;&amp;nbsp;(San Diego Locator Offline Dataset.). Is there any Locator Offline Dataset for US or Canada ? Or how can I get these data?&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;2. I found the &lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/tree/main/java/offline-geocode" target="_self"&gt;Offline Geocode&lt;/A&gt; demonstrates in Java, however there is no offline routing&amp;nbsp;demonstrates in Java. Can you provide a Java&amp;nbsp;demonstrates for offline Geocode?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; 3. The offline line data in&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-android/blob/main/kotlin/offline-routing/README.md" target="_self" rel="nofollow noopener noreferrer"&gt;Offline Routing&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;is broken ? S&lt;/SPAN&gt;&lt;SPAN&gt;imilar to the first question,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;is there any network dataset for US or Canada ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I'm looking&amp;nbsp;forward to your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;Leo&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 May 2023 23:43:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288009#M6037</guid>
      <dc:creator>LeoDeng</dc:creator>
      <dc:date>2023-05-10T23:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Offline Navigation</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288510#M6040</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/267470"&gt;@LeoDeng&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;I have conferred with a colleague and I understand your question better now.&lt;BR /&gt;&lt;BR /&gt;&lt;I&gt;Is it possible to solve these issues by ArcGIS Online routing and geocoding service in ArcGIS Runtime API for Android&lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;In short: the Online routing and geocoding service cannot be taken offline. This leaves two options:&lt;BR /&gt;- The user can create their own offline routing network and Locators for their use case.&lt;BR /&gt;- The user can assess the &lt;A href="https://www.esri.com/en-us/arcgis/products/arcgis-streetmap-premium/overview" target="_self"&gt;StreetMap Premium&lt;/A&gt; product which provides this functionality.&lt;BR /&gt;&lt;BR /&gt;I hope this helps,&lt;BR /&gt;Hudson&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 09:59:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288510#M6040</guid>
      <dc:creator>HudsonMiears</dc:creator>
      <dc:date>2023-05-12T09:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Offline Navigation</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288921#M6042</link>
      <description>&lt;P&gt;Thank you Hudson! This solve my question!&lt;/P&gt;</description>
      <pubDate>Sun, 14 May 2023 01:59:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/offline-navigation/m-p/1288921#M6042</guid>
      <dc:creator>LeoDeng</dc:creator>
      <dc:date>2023-05-14T01:59:53Z</dc:date>
    </item>
  </channel>
</rss>

