<?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 open/display offline data files in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/open-display-offline-data-files/m-p/691656#M3541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings everybody,&lt;/P&gt;&lt;P&gt;I just start working with ArcGIS SDK V100.000&amp;nbsp;for Qt , and I'm a little bit confused now.&lt;/P&gt;&lt;P&gt;To be clear and avoid any confusion, Here is what i want to do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;I want to be able to display offline data(Vectors Mostly, like shape files), and manage&amp;nbsp;their properties,and be able to change their "attribute table".&lt;/P&gt;&lt;P&gt;for example i want to display list of polygons that are stored in a geodatabase(.gdb) or in a .shp and change color of each polygon based on one of Attribute table's column(i should be able to update that column from a .cvs file)&lt;/P&gt;&lt;P&gt;How can i do it?&lt;/P&gt;&lt;P&gt;BTW, if you have any resource and documents that i can use to&amp;nbsp;understand abilities of ArcGIS SDK and how to build programs using it, please share it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Feb 2017 10:31:15 GMT</pubDate>
    <dc:creator>S_AmirMohammadHassanli</dc:creator>
    <dc:date>2017-02-01T10:31:15Z</dc:date>
    <item>
      <title>open/display offline data files</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/open-display-offline-data-files/m-p/691656#M3541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Greetings everybody,&lt;/P&gt;&lt;P&gt;I just start working with ArcGIS SDK V100.000&amp;nbsp;for Qt , and I'm a little bit confused now.&lt;/P&gt;&lt;P&gt;To be clear and avoid any confusion, Here is what i want to do:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;I want to be able to display offline data(Vectors Mostly, like shape files), and manage&amp;nbsp;their properties,and be able to change their "attribute table".&lt;/P&gt;&lt;P&gt;for example i want to display list of polygons that are stored in a geodatabase(.gdb) or in a .shp and change color of each polygon based on one of Attribute table's column(i should be able to update that column from a .cvs file)&lt;/P&gt;&lt;P&gt;How can i do it?&lt;/P&gt;&lt;P&gt;BTW, if you have any resource and documents that i can use to&amp;nbsp;understand abilities of ArcGIS SDK and how to build programs using it, please share it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 10:31:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/open-display-offline-data-files/m-p/691656#M3541</guid>
      <dc:creator>S_AmirMohammadHassanli</dc:creator>
      <dc:date>2017-02-01T10:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: open/display offline data files</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/open-display-offline-data-files/m-p/691657#M3542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Regarding displaying offline data, we currently do not support directly reading shapefiles- this will be coming in an upcoming release, but it is not there yet. Also, we do not support directly reading File Geodatabases. Rather, you have a few options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Use the Create Runtime Content tool in ArcMap to create a runtime enabled geodatabase.&amp;nbsp;ex:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-featurelayergeodatabase.htm" title="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-featurelayergeodatabase.htm"&gt;Feature layer (geodatabase)—ArcGIS Runtime SDK for Qt | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Publish a feature service with the "create replica" endpoint enabled, and using the GeodatabaseSyncTask to pull the feature service offline -&amp;nbsp;ex:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-generategeodatabase.htm" title="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-generategeodatabase.htm"&gt;Generate geodatabase—ArcGIS Runtime SDK for Qt | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Create a Mobile Map Package in ArcGIS Pro, and consume that in your app - ex:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-openmobilemap-mappackage.htm" title="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-openmobilemap-mappackage.htm"&gt;Open mobile map (map package)—ArcGIS Runtime SDK for Qt | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for changing the color of each polygon depending on the attribute, it sounds like you need a UniqueValueRenderer applied to your layer. ex:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-uniquevaluerenderer.htm" title="https://developers.arcgis.com/qt/latest/qml/sample-code/sample-qt-uniquevaluerenderer.htm"&gt;UniqueValueRenderer—ArcGIS Runtime SDK for Qt | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Feb 2017 15:29:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/open-display-offline-data-files/m-p/691657#M3542</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2017-02-01T15:29:15Z</dc:date>
    </item>
  </channel>
</rss>

