<?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: WmtsLayer class doesn't work with EPGS:3812 coordinate system in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221497#M2674</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good news, next release (ArcGIS Runtime 100.7.0) was just released this morning. It contains this WMTS fix and a few other features and fixes. Details:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/net/latest/wpf/guide/release-notes.htm" title="https://developers.arcgis.com/net/latest/wpf/guide/release-notes.htm"&gt;Release notes for 100.7.0—ArcGIS Runtime SDK for .NET | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Dec 2019 19:15:24 GMT</pubDate>
    <dc:creator>MatveiStefarov</dc:creator>
    <dc:date>2019-12-19T19:15:24Z</dc:date>
    <item>
      <title>WmtsLayer class doesn't work with EPGS:3812 coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221494#M2671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The WmtsLayer class seems not to work with the &lt;STRONG&gt;EPGS:3812&lt;/STRONG&gt; projection coordinate system from an OGC server. Indeed, after the wmtscapabilities.xml http(s) is parsed no tiles are loaded and the TileMatrixSets/Levels aren't requested. The LoadStatus doesn't report any errors. I suspect a problem in the support of the 3812 coordinate system because the wmtscapabilities.xml file mentions 2 layers working with two different projection systems: "topo" (3812) and "overlay" (3857 / WGS84 Pseudo Mercator). The overlay layer works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to trace such issue to potentially being able to determine if the projection is well supported or if the problem is rather on the server side?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;Map ngiMap &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Map&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                Basemap ngiBasemap &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ngiMap&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Basemap&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                LayerCollection layerCollection &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ngiBasemap&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;BaseLayers&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                &lt;SPAN class="comment token"&gt;// Define the Uri to the WMTS NGI/IGN service.&lt;/SPAN&gt;
                Uri wmtsUri &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Uri&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"https://www.ngi.be/cartoweb/1/1.0.0/WMTSCapabilities.xml"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                &lt;SPAN class="comment token"&gt;// Define a new instance of the WMTS service.&lt;/SPAN&gt;
                WmtsService wmtsService &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;WmtsService&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wmtsUri&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                &lt;SPAN class="comment token"&gt;// Load the WMTS service.&lt;/SPAN&gt;
                &lt;SPAN class="keyword token"&gt;await&lt;/SPAN&gt; wmtsService&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;LoadAsync&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                &lt;SPAN class="comment token"&gt;// Get the service information.&lt;/SPAN&gt;
                WmtsServiceInfo wmtsServiceInfo &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; wmtsService&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ServiceInfo&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

                &lt;SPAN class="comment token"&gt;// Obtain the read only list of WMTS layer info objects.&lt;/SPAN&gt;
                IReadOnlyList&lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt;WmtsLayerInfo&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; wmtsLayerInfos &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; wmtsServiceInfo&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;LayerInfos&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;pNgiLayer &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; ngiLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;topo&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
                &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                    &lt;SPAN class="comment token"&gt;//EPGS:3812 projected coordinate system ETRS/Belgian Lambert 2008&lt;/SPAN&gt;
                    WmtsLayer wmtsLayer3812 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;
                        &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;WmtsLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wmtsLayerInfos&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;ngiLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;topo&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; wmtsLayerInfos&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TileMatrixSets&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; TileImageFormat&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Png8&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    layerCollection&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wmtsLayer3812&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    MyMapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Map &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ngiMap&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    MyMapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;SetViewpoint&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Viewpoint&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;centerMapPoint&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1742380&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
                &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt;
                &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
                    &lt;SPAN class="comment token"&gt;//EPGS:3857 projected coordinate system (WGS84 pseudo Mercator)&lt;/SPAN&gt;
                    WmtsLayer wmtsLayer3857 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; 
                        &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;WmtsLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wmtsLayerInfos&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;int&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;ngiLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;overlay&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; wmtsLayerInfos&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;TileMatrixSets&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;TileImageFormat&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Png8&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    layerCollection&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Add&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;wmtsLayer3857&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    ngiMap&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;MinScale &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;34387&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    MyMapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Map &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; ngiMap&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                    MyMapView&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;SetViewpoint&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;Viewpoint&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;centerMapPoint&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;34387&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
                &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 10:48:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221494#M2671</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-12-11T10:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: WmtsLayer class doesn't work with EPGS:3812 coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221495#M2672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello! Which version of Runtime are you using, and on what platform?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just tested this service with Runtime 100.6.0, I see that both of these WMTS layers have two tile matrix sets available:&amp;nbsp;3812 and&amp;nbsp;3857.&amp;nbsp;However, both&amp;nbsp;have&amp;nbsp;problems rendering.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the "&lt;STRONG&gt;overlay&lt;/STRONG&gt;" layer, I see Runtime making network requests with correct parameters (e.g.&amp;nbsp;&lt;A class="link-titled" href="https://www.ngi.be/cartoweb/1/1.0.0/overlay/default/3812/0/0/0.png" title="https://www.ngi.be/cartoweb/1/1.0.0/overlay/default/3812/0/0/0.png"&gt;https://www.ngi.be/cartoweb/1/1.0.0/overlay/default/3812/0/0/0.png&lt;/A&gt;) for both tile matrix sets.&amp;nbsp;The server responds with "HTTP/404 Not Found" to all requests, so Runtime has no tiles to draw.&amp;nbsp;I tried to display this layer in a couple other GIS clients and saw the same requests&amp;nbsp;sent, and the same 404 errors returned. So I would call this a server problem — perhaps the tile cache was deleted/corrupted?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji jive-image image-2 j-img-original" src="https://user-images.githubusercontent.com/587809/70292878-51037080-1794-11ea-8b2b-c22c1ef3ab98.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the "&lt;STRONG&gt;topo&lt;/STRONG&gt;" layer,&amp;nbsp;Runtime 100.6 does show some unexpected behavior. Although the WMTSLayer loads without error, it continues making repeated GetCapabilities requests instead of loading tiles.&amp;nbsp;We already fixed this bug&amp;nbsp;internally, and the next release of Runtime should be able to draw it normally. I will update this issue when the fix is released. Here's what it looks like on our internal daily build:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://user-images.githubusercontent.com/587809/70292864-42b55480-1794-11ea-8767-c1899dd80401.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Dec 2019 03:24:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221495#M2672</guid>
      <dc:creator>MatveiStefarov</dc:creator>
      <dc:date>2019-12-06T03:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: WmtsLayer class doesn't work with EPGS:3812 coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221496#M2673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, Thanks for the answer. The runtime version is well the 100.6 (WPF Windows 10). I'm happy to see that you already fixed the issue. About the overlay rendering on 3812, it seems that it has been intentionally set as not available by keeping the tiles server cache empty. Most probably the overlay is foreseen to be added on the top of a satellite view layer.&amp;nbsp;Do note that, following the test I did, the overlay layer with the matrix set 3857 works (see picture below). It is quite obvious that the Getcapabilities.xml isn't correct. I will report that to the ngi support team.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="475487" alt="overlay 3857" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/475487_3857_Overlay.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know when the next release including the fix will be available?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Dec 2019 08:30:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221496#M2673</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-12-06T08:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: WmtsLayer class doesn't work with EPGS:3812 coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221497#M2674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good news, next release (ArcGIS Runtime 100.7.0) was just released this morning. It contains this WMTS fix and a few other features and fixes. Details:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/net/latest/wpf/guide/release-notes.htm" title="https://developers.arcgis.com/net/latest/wpf/guide/release-notes.htm"&gt;Release notes for 100.7.0—ArcGIS Runtime SDK for .NET | ArcGIS for Developers&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2019 19:15:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221497#M2674</guid>
      <dc:creator>MatveiStefarov</dc:creator>
      <dc:date>2019-12-19T19:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: WmtsLayer class doesn't work with EPGS:3812 coordinate system</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221498#M2675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have just tried this latest release and it works fine. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2019 07:41:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/wmtslayer-class-doesn-t-work-with-epgs-3812/m-p/221498#M2675</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-12-20T07:41:16Z</dc:date>
    </item>
  </channel>
</rss>

