<?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: Add Layer from Database or Datatable to Basemap using Esri.ArcGISRuntime in C# in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017846#M9677</link>
    <description>&lt;P&gt;But above mentioned links or samples doesn't shows how to create layer with the data from a database. And also I need to select any point/location from the generated layer to show popups with details of that point.&lt;/P&gt;&lt;P&gt;Can you provide me some sample code.?&lt;/P&gt;</description>
    <pubDate>Tue, 19 Jan 2021 05:09:02 GMT</pubDate>
    <dc:creator>AnsarTharammal</dc:creator>
    <dc:date>2021-01-19T05:09:02Z</dc:date>
    <item>
      <title>Add Layer from Database or Datatable to Basemap using Esri.ArcGISRuntime in C#</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017606#M9673</link>
      <description>&lt;DIV class="votecell post-layout--left"&gt;&lt;DIV class="js-voting-container grid jc-center fd-column ai-stretch gs4 fc-black-200"&gt;&lt;SPAN&gt;How can I add/create Layer using Datatable or Database Query in C#.net instead adding through Uri using Esri.ArcGISRuntime sdk for wpf?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 18 Jan 2021 08:06:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017606#M9673</guid>
      <dc:creator>AnsarTharammal</dc:creator>
      <dc:date>2021-01-18T08:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Add Layer from Database or Datatable to Basemap using Esri.ArcGISRuntime in C#</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017791#M9676</link>
      <description>&lt;P&gt;You can use either a GraphicsOverlay or a FeatureCollectionLayer to display a layer from a database/datatable. I've summarized some of the key differences below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;GraphicsOverlay:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Suitable for displaying temporary data, particularly if the data will be updated frequently.&lt;/LI&gt;&lt;LI&gt;Part of the MapView and will be rendered on top / in front of all other content in the Map.&lt;/LI&gt;&lt;LI&gt;Will not be saved if you save the Map.&lt;/LI&gt;&lt;LI&gt;Sample:&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/main/src/WPF/ArcGISRuntime.WPF.Viewer/Samples/GraphicsOverlay/AddGraphicsRenderer" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/main/src/WPF/ArcGISRuntime.WPF.Viewer/Samples/GraphicsOverlay/AddGraphicsRenderer&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FeatureCollectionLayer:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Suitable for persistent data where you want the behavior to match other feature data in the map.&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Part of the OperationalLayers collection in the Map and will be rendered in the order of the layers in the Map.&lt;/LI&gt;&lt;LI&gt;Will be saved if you save the Map.&lt;/LI&gt;&lt;LI&gt;Sample:&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/main/src/WPF/ArcGISRuntime.WPF.Viewer/Samples/Layers/FeatureCollectionLayerFromQuery" target="_blank" rel="noopener"&gt;https://github.com/Esri/arcgis-runtime-samples-dotnet/tree/main/src/WPF/ArcGISRuntime.WPF.Viewer/Samples/Layers/FeatureCollectionLayerFromQuery&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For more information see:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/net/latest/wpf/guide/layer-types-described.htm" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/net/latest/wpf/guide/layer-types-described.htm&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/net/latest/wpf/guide/features-and-graphics.htm" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/net/latest/wpf/guide/features-and-graphics.htm&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Tutorials:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/labs/net/display-point-line-and-polygon-graphics/" target="_blank"&gt;https://developers.arcgis.com/labs/net/display-point-line-and-polygon-graphics/&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://developers.arcgis.com/labs/net/style-feature-layers/" target="_blank"&gt;https://developers.arcgis.com/labs/net/style-feature-layers/&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;For a larger example see:&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-runtime-demos-dotnet/tree/main/src/GeoEventServerSample" target="_blank"&gt;https://github.com/Esri/arcgis-runtime-demos-dotnet/tree/main/src/GeoEventServerSample&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 22:51:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017791#M9676</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2021-01-18T22:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Add Layer from Database or Datatable to Basemap using Esri.ArcGISRuntime in C#</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017846#M9677</link>
      <description>&lt;P&gt;But above mentioned links or samples doesn't shows how to create layer with the data from a database. And also I need to select any point/location from the generated layer to show popups with details of that point.&lt;/P&gt;&lt;P&gt;Can you provide me some sample code.?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 05:09:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1017846#M9677</guid>
      <dc:creator>AnsarTharammal</dc:creator>
      <dc:date>2021-01-19T05:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add Layer from Database or Datatable to Basemap using Esri.ArcGISRuntime in C#</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1018133#M9679</link>
      <description>&lt;P&gt;In the examples above you will write code to query the database/datatable then create features or graphics with geometry, attributes, and a renderer. These examples assume relatively low volumes of data, e.g. 1000s or 10,000s of features/graphics because you will retrieve all the records in one query and add them to the map view.&lt;/P&gt;&lt;P&gt;For larger volumes of data where you want to retrieve data from the database based on a spatial queries. for example as the user pans or zooms the map view, a spatially enabled database and a feature service are recommended. For more information see&amp;nbsp;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/introduction-to-sharing-web-layers.htm" target="_blank"&gt;https://pro.arcgis.com/en/pro-app/latest/help/sharing/overview/introduction-to-sharing-web-layers.htm&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jan 2021 21:30:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/add-layer-from-database-or-datatable-to-basemap/m-p/1018133#M9679</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2021-01-19T21:30:56Z</dc:date>
    </item>
  </channel>
</rss>

