<?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 maps: What exactly do I need? in ArcGIS Maps SDK for Unity Questions</title>
    <link>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1236580#M343</link>
    <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/176"&gt;@Nicholas-Furness&lt;/a&gt;&amp;nbsp; Thanks for your detailed response! Very helpful! Sorry for the delayed response, I had problems with my account.&lt;/P&gt;</description>
    <pubDate>Wed, 30 Nov 2022 20:48:00 GMT</pubDate>
    <dc:creator>ReinD</dc:creator>
    <dc:date>2022-11-30T20:48:00Z</dc:date>
    <item>
      <title>Offline maps: What exactly do I need?</title>
      <link>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1227371#M252</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I need offline street and satellite elevation maps with routing for about a dozen countries. I have a few questions:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1. I understand that I need ArcGIS Publisher. But what version of ArcGIS Pro do I need? Pro Basic, Pro Standard, or Pro Advanced?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. After I create the offline maps that are accessible through Unity, do individual users need ArcGIS subscriptions or are those offline maps covered by my subscription?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3. Is there any documentation or examples of how I access these offline maps from within Unity?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;4. Does it matter whether maps are online or offline for routing?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;5. Do individual users need ArcGIS subscriptions to do routing, or can I use my API key?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ReinD&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 08:43:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1227371#M252</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2022-11-01T08:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Offline maps: What exactly do I need?</title>
      <link>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1229198#M269</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;SPAN&gt;I need offline street and satellite elevation maps with routing for about a dozen countries. I have a few questions:&lt;/SPAN&gt;&lt;P&gt;&lt;SPAN&gt;1. I understand that I need ArcGIS Publisher. But what version of ArcGIS Pro do I need? Pro Basic, Pro Standard, or Pro Advanced?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The Publisher extension for ArcGIS Pro is only needed if you want to create an offline&amp;nbsp;map package for anonymous use in our Field Apps such as Field Maps. Map and scene packages (MMPKs/MSPKs) combine multiple data sources and layer definitions in one ready-to-read map or scene definition, and ArcGIS Maps SDKs for Game Engines cannot yet read them.&lt;/P&gt;&lt;P&gt;Instead, the Game Engine SDKs can read Scene Layer Packages (SLPKs) and Tile Packages (TPKs/TPKXs), each of which provides data for a single layer, which you can use to construct your &lt;STRONG&gt;&lt;A href="https://developers.arcgis.com/unity/maps/" target="_self"&gt;ArcGIS Map&lt;/A&gt;&lt;/STRONG&gt;. Those &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-3d-object-scene-layer-package.htm#L_" target="_self"&gt;SLPKs&lt;/A&gt;, &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-map-tile-package.htm#L_" target="_self"&gt;TPKs and TPKXs&lt;/A&gt; &lt;EM&gt;can&lt;/EM&gt; be created in any version ArcGIS Pro (without a Publisher extension). You can use ArcGIS Pro to create a Scene Layer Package of 3D Object data or Integrated Mesh data, or a Tile Package of basemap data or LERC-encoded elevation data.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;2. After I create the offline maps that are accessible through Unity, do individual users need ArcGIS subscriptions or are those offline maps covered by my subscription?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;They do not, no. Just distribute and use the SLPK/TPK/TPKX files and consume them in your app. As always, make sure you're honoring the data usage rights for the data you're including in your offline packages.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;3. Is there any documentation or examples of how I access these offline maps from within Unity?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;Yes...&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://developers.arcgis.com/unity/maps/tutorials/display-a-map-api/" target="_blank" rel="noopener noreferrer"&gt;https://developers.arcgis.com/unity/maps/tutorials/display-a-map-api/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Just reference the locally stored file instead of the service when creating each Layer. See these links for more info:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/unreal-engine/layers/#set-a-basemap" target="_blank" rel="noopener noreferrer"&gt;https://developers.arcgis.com/unreal-engine/layers/#set-a-basemap&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/unreal-engine/maps/elevation/#set-elevation" target="_blank" rel="noopener noreferrer"&gt;https://developers.arcgis.com/unreal-engine/maps/elevation/#set-elevation&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;4. Does it matter whether maps are online or offline for routing?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;At this time, routing in the ArcGIS Maps SDKs for Game Engines requires a connection to a &lt;A href="https://developers.arcgis.com/documentation/mapping-apis-and-services/routing/services/routing-service/" target="_self"&gt;routing service&lt;/A&gt;. However, the map layers themselves on which you overlay the route results can be any combination of online or offline layers. The two things (routing and layers) are distinct.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;5. Do individual users need ArcGIS subscriptions to do routing, or can I use my API key?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;They do not need ArcGIS Subscriptions, no. You can use your API Key to deliver solutions that do routing (&lt;A href="https://developers.arcgis.com/pricing/" target="_self"&gt;you get 20,000 routes for free&lt;/A&gt;&amp;nbsp;per month).&lt;/P&gt;&lt;P&gt;Depending on the nature of the app, and the target users, some developers choose to require/let their users use their ArcGIS Subscription, and you can certainly do that, but it's not a consumer-oriented approach. If your target users are not already ArcGIS subscribers, then an API Key is the appropriate approach.&lt;/P&gt;&lt;P&gt;Hope that helps!&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Mon, 07 Nov 2022 15:43:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1229198#M269</guid>
      <dc:creator>Nicholas-Furness</dc:creator>
      <dc:date>2022-11-07T15:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Offline maps: What exactly do I need?</title>
      <link>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1236575#M341</link>
      <description>&lt;P&gt;Original post by&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/640732"&gt;@ReinD&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 20:42:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1236575#M341</guid>
      <dc:creator>JesseCloutier</dc:creator>
      <dc:date>2022-11-30T20:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Offline maps: What exactly do I need?</title>
      <link>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1236580#M343</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/176"&gt;@Nicholas-Furness&lt;/a&gt;&amp;nbsp; Thanks for your detailed response! Very helpful! Sorry for the delayed response, I had problems with my account.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 20:48:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-maps-sdk-for-unity-questions/offline-maps-what-exactly-do-i-need/m-p/1236580#M343</guid>
      <dc:creator>ReinD</dc:creator>
      <dc:date>2022-11-30T20:48:00Z</dc:date>
    </item>
  </channel>
</rss>

