<?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: Problems to display vectortiles map from server- resolution and turning white in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1595596#M13387</link>
    <description>&lt;P&gt;&lt;SPAN&gt;You could subscribe for map scale property changing event in MainPage constructor and check these values&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;mapView.PropertyChanged += (o, e) =&amp;gt;
{
    if (e.PropertyName == nameof(mapView.MapScale))
    {
        var currentScale = mapView.MapScale;
        // depends on your map layers structure
        ArcGISVectorTiledLayer layer = mapView.Map.Basemap.BaseLayers.OfType&amp;lt;ArcGISVectorTiledLayer&amp;gt;().FirstOrDefault();
        var vectorTileSourceInfo = layer.SourceInfo;
        var layerMinScale = vectorTileSourceInfo.MinScale;
        var layerMaxScale = vectorTileSourceInfo.MaxScale;

        // To view layer correctly currectScale mus be &amp;lt;= layerMinScale and &amp;gt;= layerMaxScale
    }
};




&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Mar 2025 14:50:30 GMT</pubDate>
    <dc:creator>GKmieliauskas</dc:creator>
    <dc:date>2025-03-14T14:50:30Z</dc:date>
    <item>
      <title>Problems to display vectortiles map from server- resolution and turning white</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1592718#M13355</link>
      <description>&lt;P&gt;Hei&lt;/P&gt;&lt;P&gt;In a test map application opening a vector tile server and hope to get helpt to resolve these issues:&lt;/P&gt;&lt;P&gt;- Is the the resolution of the map display automatic - only controlled by the server ?&lt;/P&gt;&lt;P&gt;- Is there a possible approach to check why the map information turns white when zooming&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The map is only visible when zooming far out - and then the display is very pixelated&lt;/P&gt;&lt;P&gt;When zooming in it turns white:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GunnarGisleberg_0-1741266800861.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/127150iEB530E734893B2C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GunnarGisleberg_0-1741266800861.png" alt="GunnarGisleberg_0-1741266800861.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Zoom a little and then map detailed information is invisible&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GunnarGisleberg_0-1741268096683.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/127152iAD723BE84E2D92B8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GunnarGisleberg_0-1741268096683.png" alt="GunnarGisleberg_0-1741268096683.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 13:41:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1592718#M13355</guid>
      <dc:creator>GunnarGisleberg</dc:creator>
      <dc:date>2025-03-06T13:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to display vectortiles map from server- resolution and turning white</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1592768#M13358</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check your ArcGISVectorTiledLayer&amp;nbsp;MinScale and MaxScale. Your zoomed map scale must be between MinScale and MaxScale of layer. You can found values in&amp;nbsp;&lt;A href="https://developers.arcgis.com/net/api-reference/api/net/Esri.ArcGISRuntime/Esri.ArcGISRuntime.ArcGISServices.VectorTileSourceInfo.html" target="_self"&gt;VectorTileSourceInfo&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 15:25:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1592768#M13358</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2025-03-06T15:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to display vectortiles map from server- resolution and turning white</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1593737#M13364</link>
      <description>&lt;P&gt;Thank you for the quick replay. I made a test opening the ArcGISVectorTiledLayer adding MinScale and MaxScale properties - still the map data is lacking. I shall check returned when the layer has been loaded to check if my connection has limitated ascess to the server data.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 08:53:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1593737#M13364</guid>
      <dc:creator>GunnarGisleberg</dc:creator>
      <dc:date>2025-03-10T08:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to display vectortiles map from server- resolution and turning white</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1594091#M13367</link>
      <description>&lt;P&gt;I have now tested further:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Initialiating both the ArcGISVectorTiledLayer and the Map, setting the MinScale and MaxScale properties.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to test vector tile map display response from a map source containing relvant map details.&lt;BR /&gt;For testing, I compare the ArcGIS gray-level URL:&lt;BR /&gt;&lt;A href="https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/resources/styles" target="_blank"&gt;https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/resources/styles&lt;/A&gt;&lt;BR /&gt;with the GeoData company server URL (an ArcGIS retailer in Norway).&lt;BR /&gt;The gray-level map from ArcGIS lacks sufficient detail for evaluating display performance.&lt;BR /&gt;However, using the vector til server at Geodata no details appear in the map , while it displays correctly on ArcGIS's test gray-level server.&lt;/P&gt;&lt;P&gt;The ArcGIS URL works as expected, but the GeoData URL only shows a blank white area.&lt;/P&gt;&lt;P&gt;To investigate, I performed a JSON dump comparison after loading vector tile layers from both servers.&lt;BR /&gt;The DefaultStyleUri contents are identical, and most JSON data, including level of detail settings, appear similar.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GunnarGisleberg_0-1741671101794.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/127568i1A50CCCE2CF46A38/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GunnarGisleberg_0-1741671101794.png" alt="GunnarGisleberg_0-1741671101794.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The main difference is that an attribute &lt;STRONG&gt;item&lt;/STRONG&gt; is present in the ArcGIS server response but missing in the GeoData response.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GunnarGisleberg_1-1741671242882.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/127569iD0DD684B6C600E37/image-size/medium?v=v2&amp;amp;px=400" role="button" title="GunnarGisleberg_1-1741671242882.png" alt="GunnarGisleberg_1-1741671242882.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Have you any idea how to further investigate why the vector tile data does not appear in the map from GeoData?&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I sende you the GeoData server url can you debug it ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunnar Gisleberg&lt;/P&gt;</description>
      <pubDate>Tue, 11 Mar 2025 05:55:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1594091#M13367</guid>
      <dc:creator>GunnarGisleberg</dc:creator>
      <dc:date>2025-03-11T05:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problems to display vectortiles map from server- resolution and turning white</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1595596#M13387</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You could subscribe for map scale property changing event in MainPage constructor and check these values&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;mapView.PropertyChanged += (o, e) =&amp;gt;
{
    if (e.PropertyName == nameof(mapView.MapScale))
    {
        var currentScale = mapView.MapScale;
        // depends on your map layers structure
        ArcGISVectorTiledLayer layer = mapView.Map.Basemap.BaseLayers.OfType&amp;lt;ArcGISVectorTiledLayer&amp;gt;().FirstOrDefault();
        var vectorTileSourceInfo = layer.SourceInfo;
        var layerMinScale = vectorTileSourceInfo.MinScale;
        var layerMaxScale = vectorTileSourceInfo.MaxScale;

        // To view layer correctly currectScale mus be &amp;lt;= layerMinScale and &amp;gt;= layerMaxScale
    }
};




&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 14:50:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/problems-to-display-vectortiles-map-from-server/m-p/1595596#M13387</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2025-03-14T14:50:30Z</dc:date>
    </item>
  </channel>
</rss>

