<?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 WebTiledLayer blank, never downloads in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webtiledlayer-blank-never-downloads/m-p/365364#M33896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I try to create a WebTiledLayer and add it to the map, it creates the layer and adds it to the map just fine, but it doesn't display anything. &amp;nbsp;When I watch the network traffic, no requests are made for that layer. &amp;nbsp;If I pan and zoom, I can see the basemap and FeatureLayer requests as they are redrawn, but nothing for my WebTiledLayer. &amp;nbsp;Is there a setting that might affect whether a WebTiledLayer needs to draw itself. &amp;nbsp;Does the order in which it is added matter, or the index, or what type of other layers there are?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Nov 2016 19:38:42 GMT</pubDate>
    <dc:creator>DavidElies</dc:creator>
    <dc:date>2016-11-18T19:38:42Z</dc:date>
    <item>
      <title>WebTiledLayer blank, never downloads</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webtiledlayer-blank-never-downloads/m-p/365364#M33896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I try to create a WebTiledLayer and add it to the map, it creates the layer and adds it to the map just fine, but it doesn't display anything. &amp;nbsp;When I watch the network traffic, no requests are made for that layer. &amp;nbsp;If I pan and zoom, I can see the basemap and FeatureLayer requests as they are redrawn, but nothing for my WebTiledLayer. &amp;nbsp;Is there a setting that might affect whether a WebTiledLayer needs to draw itself. &amp;nbsp;Does the order in which it is added matter, or the index, or what type of other layers there are?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Nov 2016 19:38:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webtiledlayer-blank-never-downloads/m-p/365364#M33896</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2016-11-18T19:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: WebTiledLayer blank, never downloads</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webtiledlayer-blank-never-downloads/m-p/365365#M33897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found my problem. &amp;nbsp;I had added my generic javascript object ("properties") as the tileInfo object, instead of creating a new TileInfo object from my properties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wrong:&lt;/P&gt;&lt;PRE class="language-javascript line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;WebTiledLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Ftemplate.url.com" rel="nofollow" target="_blank"&gt;https://template.url.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&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="string token"&gt;"tileInfo"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; tileInfoProperties &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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right:&lt;/P&gt;&lt;PRE class="language-javascript line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;WebTiledLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Ftemplate.url.com" rel="nofollow" target="_blank"&gt;https://template.url.com&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&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="string token"&gt;"tileInfo"&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;TileInfo&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tileInfoProperties&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2016 18:43:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/webtiledlayer-blank-never-downloads/m-p/365365#M33897</guid>
      <dc:creator>DavidElies</dc:creator>
      <dc:date>2016-11-21T18:43:24Z</dc:date>
    </item>
  </channel>
</rss>

