<?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 Feature layers don't display on the map (WPF Application) in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504196#M6197</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the release of ArcGIS Runtime SDK 10.2.4, I've read the developer's guide and tried to do the various tutorials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I have a problem with the part "Add a feature layer to provide operational data" (&lt;A href="https://developers.arcgis.com/net/desktop/guide/access-feature-data-in-the-cloud.htm"&gt;https://developers.arcgis.com/net/desktop/guide/access-feature-data-in-the-cloud.htm&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;When I add a feature layer on the base map, it doesn't display at all, no matter how I try (by XAML or by code). I even used the layer.InitializationException to check if it was correctly loaded. All I can see is the basemap without the swimming pool permits layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your informations, I'm working with Visual Studio 2013 Express Edition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me to find what I'm doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the code I use for my basic project (WPF Application in Visual Basic):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Window x:Class="MainWindow"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns="&lt;A href="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&gt;http://schemas.microsoft.com/winfx/2006/xaml/presentation&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:x="&lt;A href="http://schemas.microsoft.com/winfx/2006/xaml"&gt;http://schemas.microsoft.com/winfx/2006/xaml&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:esri="&lt;A href="http://schemas.esri.com/arcgis/runtime/2013"&gt;http://schemas.esri.com/arcgis/runtime/2013&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title="MainWindow" Height="536.596" Width="888.705"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:MapView x:Name="MyMapView"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="BaseMap" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ServiceUri="&lt;A href="http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer&amp;quot;/"&gt;http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer"/&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="PoolPermits"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer.FeatureTable&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ServiceFeatureTable&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ServiceUri="&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer/0&amp;quot;/"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer/0"/&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:FeatureLayer.FeatureTable&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:FeatureLayer&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map.InitialViewpoint&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ViewpointExtent XMin="-13075816.40" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YMin="4014771.46" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XMax="-13073005.67" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YMax="4016869.78"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map.InitialViewpoint&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:MapView&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;BR /&gt;&amp;lt;/Window&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grégoire&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Oct 2014 10:05:07 GMT</pubDate>
    <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
    <dc:date>2014-10-16T10:05:07Z</dc:date>
    <item>
      <title>Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504196#M6197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With the release of ArcGIS Runtime SDK 10.2.4, I've read the developer's guide and tried to do the various tutorials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I have a problem with the part "Add a feature layer to provide operational data" (&lt;A href="https://developers.arcgis.com/net/desktop/guide/access-feature-data-in-the-cloud.htm"&gt;https://developers.arcgis.com/net/desktop/guide/access-feature-data-in-the-cloud.htm&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;When I add a feature layer on the base map, it doesn't display at all, no matter how I try (by XAML or by code). I even used the layer.InitializationException to check if it was correctly loaded. All I can see is the basemap without the swimming pool permits layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For your informations, I'm working with Visual Studio 2013 Express Edition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me to find what I'm doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the code I use for my basic project (WPF Application in Visual Basic):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;Window x:Class="MainWindow"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns="&lt;A href="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&gt;http://schemas.microsoft.com/winfx/2006/xaml/presentation&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:x="&lt;A href="http://schemas.microsoft.com/winfx/2006/xaml"&gt;http://schemas.microsoft.com/winfx/2006/xaml&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:esri="&lt;A href="http://schemas.esri.com/arcgis/runtime/2013"&gt;http://schemas.esri.com/arcgis/runtime/2013&lt;/A&gt;"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title="MainWindow" Height="536.596" Width="888.705"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Grid&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:MapView x:Name="MyMapView"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="BaseMap" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ServiceUri="&lt;A href="http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer&amp;quot;/"&gt;http://services.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer"/&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer ID="PoolPermits"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FeatureLayer.FeatureTable&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ServiceFeatureTable&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ServiceUri="&lt;A href="http://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer/0&amp;quot;/"&gt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer/0"/&lt;/A&gt;&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:FeatureLayer.FeatureTable&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:FeatureLayer&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map.InitialViewpoint&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ViewpointExtent XMin="-13075816.40" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YMin="4014771.46" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XMax="-13073005.67" &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YMax="4016869.78"/&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map.InitialViewpoint&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:MapView&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Grid&amp;gt;&lt;BR /&gt;&amp;lt;/Window&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Grégoire&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 10:05:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504196#M6197</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-16T10:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504197#M6198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like the PoolPermit feature server&amp;lt;http://sampleserver6.arcgisonline.com/arcgis/rest/services/PoolPermits/FeatureServer&amp;gt; is no longer working well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even the arcgis.com viewer&amp;lt;http://www.arcgis.com/home/webmap/viewer.html?url=http%3A%2F%2Fsampleserver6.arcgisonline.com%2Farcgis%2Frest%2Fservices%2FPoolPermits%2FFeatureServer&amp;amp;source=sd&amp;gt; is not able to display the features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error returned by the server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                    {"error":{"code":500,"message":"Error performing query operation","details":[]}}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/Dominique&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 10:39:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504197#M6198</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2014-10-16T10:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504198#M6199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Indeed, you're right, thanks. But the PoolPermit feature service was working yesterday! I was able to open it directly in arcgis.com.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Homever, my problem remains. I've tried to create an application with internal datas using an&lt;/P&gt;&lt;P&gt;ArcGISDynamicMapServiceLayer and a FeatureLayer (like the example). The first was visible but not the second. And I could see all my features with the ArcGIS.com Map viewer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 11:58:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504198#M6199</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-16T11:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504199#M6200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does Spatial References match with MapView and FeatureLayer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 12:03:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504199#M6200</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2014-10-16T12:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504200#M6201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the ESRI example, I suppose (that's the goal of a tutorial). Regarding my local datas, the 2 layers are in the same coordinate system, yes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 12:20:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504200#M6201</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-16T12:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504201#M6202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PoolPermit service is up again. I tested your code and it seems working.&lt;/P&gt;&lt;P&gt;Could you try again?&lt;/P&gt;&lt;P&gt;If you are experiencing issue with another services, please share your code so we can reproduce the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 08:02:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504201#M6202</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2014-10-17T08:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504202#M6203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Indeed, The PoolPermit is up again. But my code still doesn't work on my side. For your information, I've created a WPF application (Visual Basic) in Visual Studio Express 2013 (my test platform is on Windows 7). I've pasted my code in the MainWindow.xaml and this is the result I get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ArcGISRuntimeTest.jpg" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/21902_ArcGISRuntimeTest.jpg" style="width: 620px; height: 375px;" /&gt;&lt;/P&gt;&lt;P&gt;Could it be a problem with the Visual "Express" edition? Or with some parameters of the solution? (I've left everything by default) I've also tried a WPF application in C# with the same result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 08:37:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504202#M6203</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T08:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504203#M6204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked if there is any errors when layer is loaded? You can access to that from MapView.LayerLoaded event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also could you check what data is fetched from the server using Fiddler etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 08:43:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504203#M6204</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2014-10-17T08:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504204#M6205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your tips.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried the mapView.LayerLoaded event and the PoolPermits layer was loaded successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here's a screenshot of the traffic data through Fiddler:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Fiddler.jpg" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/21903_Fiddler.jpg" style="width: 794px; height: 405px;" /&gt;&lt;/P&gt;&lt;P&gt;Everything seems allright.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:04:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504204#M6205</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T09:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504205#M6206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've opened the tiles under the FeatureServer (in Fiddler) and there isn't any pool drawed on the map (only the base map).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's the complete url sent:&lt;/P&gt;&lt;P&gt;/arcgis/rest/services/PoolPermits/FeatureServer/0/query?outFields=objectid%2Chas_pool&amp;amp;outSR=3857&amp;amp;returnGeometry=true&amp;amp;geometry=%7B%22rings%22%3A%5B%5B%5B-13076254.949469188%2C4014763.0498995488%5D%2C%5B-13076254.949469188%2C4016878.190100451%5D%2C%5B-13072567.120530812%2C4016878.190100451%5D%2C%5B-13072567.120530812%2C4014763.0498995488%5D%2C%5B-13076254.949469188%2C4014763.0498995488%5D%5D%5D%2C%22spatialReference%22%3A%7B%22wkid%22%3A102100%2C%22latestWkid%22%3A3857%7D%7D&amp;amp;geometryType=esriGeometryPolygon&amp;amp;inSR=102100&amp;amp;spatialRel=esriSpatialRelIntersects&amp;amp;f=json&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:10:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504205#M6206</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T09:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504206#M6207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What was the response from the server?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried the code that you posted in the original post and it seems to work for me. Going to test that in express edition but need to install it first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just for kicks, can you try to set CultureInfo to en-US or GB and see if that helps. I assume that you are using some other. Or can you let me know what you are using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:17:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504206#M6207</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2014-10-17T09:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504207#M6208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the response from the Server:&lt;/P&gt;&lt;P&gt;{"objectIdFieldName":"objectid","globalIdFieldName":"","geometryType":"esriGeometryPolygon","spatialReference":{"wkid":102100,"latestWkid":3857},"fields":[{"name":"objectid","alias":"OBJECTID","type":"esriFieldTypeOID"},{"name":"has_pool","alias":"Has_Pool","type":"esriFieldTypeInteger"}],"features":[{"geometry":{"rings":[[[-13073563.808187518,4016000.5893990993],[-13073539.07662103,4015994.5016283691],[-13073500.561194843,4015994.182299681],[-13073501.322782392,4015900.7540653944],[-13073501.607079294,4015893.4926456138],[-13073502.34006433,4015886.2629382163],[-13073503.519120546,4015879.0929854736],[-13073505.139425823,4015872.010486193],[-13073507.195057658,4015865.0431517512],[-13073509.677879972,4015858.2176130638],[-13073512.578285273,4015851.5601492599],[-13073515.021006852,4015846.6929872781],[-13073518.624360956,4015840.3916177973], ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to change the CultureInfo to en-US without success. My CultureInfo is "fr-CH".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:28:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504207#M6208</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T09:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504208#M6209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tested with VB.NET and Express edition of VS. Also tried with "fr-CH" but cannot find any issues. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you zip your project and send it directly to me (see email from profile)? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:42:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504208#M6209</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2014-10-17T09:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504209#M6210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, but I cannot find your email under your profile, nor in your vcard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But you can access my project here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://onedrive.live.com/redir?resid=32584A746A4701C0%211903" title="https://onedrive.live.com/redir?resid=32584A746A4701C0%211903"&gt;Microsoft OneDrive&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 09:57:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504209#M6210</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T09:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504210#M6211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh, need to check that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried your zip and it works for me. You were using Win7?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 10:01:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504210#M6211</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2014-10-17T10:01:45Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504211#M6212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It worked? Very strange. Yes I'm on Win7 with the SDK 10.2.4. I'll try on another desktop this afternoon and write you back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your tests.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 10:09:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504211#M6212</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T10:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504212#M6213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've done a fresh install of Visual Studio 2013 Express with the ArcGIS Runtime 10.2.4 on another Win7 platform and It worked!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only "major" difference between the two is that I had the Runtime 10.2.3 Beta on my Desktop before. Could it be a part of the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Oct 2014 14:50:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504212#M6213</guid>
      <dc:creator>deleted-user-i8mW0s-ySag1</dc:creator>
      <dc:date>2014-10-17T14:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504213#M6214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good to hear that you have managed to solve that issue. It shouldn't affect but it's good practice to remove all references to Beta SDK before installing RTM. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Oct 2014 09:18:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504213#M6214</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2014-10-20T09:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504214#M6215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have run into the same issue, it quite weird.&lt;/P&gt;&lt;P&gt;Still don't know how to fix it.&lt;/P&gt;&lt;P&gt;wpf application, Windows 8.1, visual studio 2013 ultimate, arcgis runtime sdk 10.2.4 (or 10.2.5)&lt;/P&gt;&lt;P&gt;feature layer not displaying.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 May 2015 16:52:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504214#M6215</guid>
      <dc:creator>JohnWoon</dc:creator>
      <dc:date>2015-05-11T16:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Feature layers don't display on the map (WPF Application)</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504215#M6216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the query towards the service return correct features? Is there any initialization errors on FeatureLayer / ServiceFeatureTable? Is there any errors in ServiceFeatureTable's Updated event? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 13:45:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/feature-layers-don-t-display-on-the-map-wpf/m-p/504215#M6216</guid>
      <dc:creator>AnttiKajanus1</dc:creator>
      <dc:date>2015-05-13T13:45:59Z</dc:date>
    </item>
  </channel>
</rss>

