<?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 Tiled Layers Not Displaying As Expected in ArcGIS REST APIs and Services Questions</title>
    <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/tiled-layers-not-displaying-as-expected/m-p/444580#M2104</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You'll have to forgive my inexperience here, both with the forums and ESRI products in general.&amp;nbsp; I am hoping this post lands in the correct forum.&amp;nbsp; That said...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Working with the Silverlight API, I am utilizing two specific layers I've displayed below as test code.&amp;nbsp; I have a 'basemap' layer and an 'overlay' layer.&amp;nbsp; The later I plan on allowing for a dynamic transparency through a control targeting the opacity property.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I set up the layers in the simple XAML example as listed below, I notice in Fiddler both the basemap and the overlay layer get their json, but tiles for the later declared are not returned.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" SnapToLevels="True" Background="White" Extent="12589861.5047889, 452193.576650939, 12776710.8368209, 634919.636547503" &amp;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:ArcGISTiledMapServiceLayer ID="layerBase" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/BaseLayerGrey/MapServer" /&amp;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:ArcGISTiledMapServiceLayer ID="layerHillshade" Opacity=".50" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/SL_HillShade/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I reverse the order of the layers in the XAML (overlay first) I notice the basemap makes the json call, but returns no tiles.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" SnapToLevels="True" Background="White" Extent="12589861.5047889, 452193.576650939, 12776710.8368209, 634919.636547503" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="layerHillshade" Opacity=".50" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/SL_HillShade/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="layerBase" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/BaseLayerGrey/MapServer" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Both layers will work properly independently of the other, but fail to display properly when combined.&amp;nbsp; I was curious how I should debug this further or if there is just a simple answer to this.&amp;nbsp; Thanks to all that respond in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Dec 2011 16:37:04 GMT</pubDate>
    <dc:creator>JustinMunsters</dc:creator>
    <dc:date>2011-12-12T16:37:04Z</dc:date>
    <item>
      <title>Tiled Layers Not Displaying As Expected</title>
      <link>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/tiled-layers-not-displaying-as-expected/m-p/444580#M2104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You'll have to forgive my inexperience here, both with the forums and ESRI products in general.&amp;nbsp; I am hoping this post lands in the correct forum.&amp;nbsp; That said...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Working with the Silverlight API, I am utilizing two specific layers I've displayed below as test code.&amp;nbsp; I have a 'basemap' layer and an 'overlay' layer.&amp;nbsp; The later I plan on allowing for a dynamic transparency through a control targeting the opacity property.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I set up the layers in the simple XAML example as listed below, I notice in Fiddler both the basemap and the overlay layer get their json, but tiles for the later declared are not returned.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" SnapToLevels="True" Background="White" Extent="12589861.5047889, 452193.576650939, 12776710.8368209, 634919.636547503" &amp;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:ArcGISTiledMapServiceLayer ID="layerBase" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/BaseLayerGrey/MapServer" /&amp;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:ArcGISTiledMapServiceLayer ID="layerHillshade" Opacity=".50" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/SL_HillShade/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I reverse the order of the layers in the XAML (overlay first) I notice the basemap makes the json call, but returns no tiles.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:Map x:Name="MyMap" SnapToLevels="True" Background="White" Extent="12589861.5047889, 452193.576650939, 12776710.8368209, 634919.636547503" &amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="layerHillshade" Opacity=".50" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/SL_HillShade/MapServer"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer ID="layerBase" Url="http://www.gis.co.ottawa.mi.us/GISWEB/rest/services/BaseLayerGrey/MapServer" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:Map&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Both layers will work properly independently of the other, but fail to display properly when combined.&amp;nbsp; I was curious how I should debug this further or if there is just a simple answer to this.&amp;nbsp; Thanks to all that respond in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 16:37:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-rest-apis-and-services-questions/tiled-layers-not-displaying-as-expected/m-p/444580#M2104</guid>
      <dc:creator>JustinMunsters</dc:creator>
      <dc:date>2011-12-12T16:37:04Z</dc:date>
    </item>
  </channel>
</rss>

